"scripts": {
"build": "pnpm build:clean && tsc",
"build:clean": "tsc --build --clean",
- "start": "node dist/main.js",
- "start:httpd-echo": "node httpd-echo.js",
+ "start": "node --enable-source-maps dist/main.js",
+ "start:httpd-echo": "node --enable-source-maps httpd-echo.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
},
"scripts": {
"build": "rollup --config --configPlugin typescript",
- "start": "node dist/main.cjs",
- "start:esm": "node dist/main.js",
+ "start": "node --enable-source-maps dist/main.cjs",
+ "start:esm": "node --enable-source-maps dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"benchmark:echo": "autocannon -c 100 -d 30 -p 10 -m POST -H Content-Type=application/json -b '{\"key1\":\"value1\", \"key2\":\"value2\"}' http://localhost:8080/api/echo",
"benchmark:factorial": "autocannon -c 100 -d 30 -p 10 http://localhost:8080/api/factorial/30"
},
"scripts": {
"build": "rollup --config --configPlugin typescript",
- "start": "node dist/main.cjs",
- "start:esm": "node dist/main.js",
+ "start": "node --enable-source-maps dist/main.cjs",
+ "start:esm": "node --enable-source-maps dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"benchmark:echo": "autocannon -c 100 -d 30 -p 10 -m POST -H Content-Type=application/json -b '{\"key1\":\"value1\", \"key2\":\"value2\"}' http://localhost:8080/api/echo",
"benchmark:factorial": "autocannon -c 100 -d 30 -p 10 http://localhost:8080/api/factorial/30"
"scripts": {
"build": "pnpm build:clean && tsc",
"build:clean": "tsc --build --clean",
- "start": "node dist/main.js",
+ "start": "node --enable-source-maps dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"benchmark:echo": "autocannon -c 100 -d 30 -p 10 -m POST -H Content-Type=application/json -b '{\"key1\":\"value1\", \"key2\":\"value2\"}' http://localhost:8080/api/echo",
"benchmark:factorial": "autocannon -c 100 -d 30 -p 10 http://localhost:8080/api/factorial/30"
},
"scripts": {
"build": "rollup --config --configPlugin typescript",
- "start": "node dist/main.cjs",
- "start:esm": "node dist/main.js",
+ "start": "node --enable-source-maps dist/main.cjs",
+ "start:esm": "node --enable-source-maps dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"benchmark:echo": "autocannon -c 100 -d 30 -p 10 -m POST -H Content-Type=application/json -b '{\"key1\":\"value1\", \"key2\":\"value2\"}' http://localhost:8080/api/echo",
"benchmark:factorial": "autocannon -c 100 -d 30 -p 10 http://localhost:8080/api/factorial/30"
},
"scripts": {
"build": "rollup --config --configPlugin typescript",
- "start": "node dist/main.cjs",
- "start:esm": "node dist/main.js",
+ "start": "node --enable-source-maps dist/main.cjs",
+ "start:esm": "node --enable-source-maps dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"benchmark:echo": "autocannon -c 100 -d 30 -p 10 -m POST -H Content-Type=application/json -b '{\"key1\":\"value1\", \"key2\":\"value2\"}' http://localhost:8080/api/echo",
"benchmark:factorial": "autocannon -c 100 -d 30 -p 10 http://localhost:8080/api/factorial/30"
"scripts": {
"build": "pnpm build:clean && tsc",
"build:clean": "tsc --build --clean",
- "start": "node dist/main.js",
+ "start": "node --enable-source-maps dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"benchmark:echo": "autocannon -c 100 -d 30 -p 10 -m POST -H Content-Type=application/json -b '{\"key1\":\"value1\", \"key2\":\"value2\"}' http://localhost:8080/api/echo",
"benchmark:factorial": "autocannon -c 100 -d 30 -p 10 http://localhost:8080/api/factorial/30"
"scripts": {
"build": "pnpm build:clean && tsc",
"build:clean": "tsc --build --clean",
- "start": "node dist/main.js",
+ "start": "node --enable-source-maps dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
},
"scripts": {
"build": "rollup --config --configPlugin typescript",
- "start": "node dist/main.cjs",
- "start:esm": "node dist/main.js",
+ "start": "node --enable-source-maps dist/main.cjs",
+ "start:esm": "node --enable-source-maps dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"test:requests": "node requests.js"
},
},
"scripts": {
"build": "rollup --config --configPlugin typescript",
- "start": "node dist/main.cjs",
- "start:esm": "node dist/main.js",
+ "start": "node --enable-source-maps dist/main.cjs",
+ "start:esm": "node --enable-source-maps dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"test:requests": "node requests.js"
},
"scripts": {
"build": "pnpm build:clean && tsc",
"build:clean": "tsc --build --clean",
- "start": "node dist/main.js",
+ "start": "node --enable-source-maps dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"test:requests": "node requests.js"
},
"build:prod": "rollup --config",
"build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development",
"build:analyze": "rollup --config --environment ANALYZE,BUILD:development",
- "benchmark": "pnpm build && node --max-old-space-size=4096 -r source-map-support/register benchmarks/internal/bench.mjs",
- "benchmark:prod": "pnpm build:prod && node --max-old-space-size=4096 benchmarks/internal/bench.mjs",
- "benchmark:debug": "pnpm build && node --max-old-space-size=4096 -r source-map-support/register --inspect benchmarks/internal/bench.mjs",
+ "benchmark": "pnpm build && node --max-old-space-size=4096 --enable-source-maps benchmarks/internal/bench.mjs",
+ "benchmark:prod": "pnpm build:prod && node --max-old-space-size=4096 --enable-source-maps benchmarks/internal/bench.mjs",
+ "benchmark:debug": "pnpm build && node --max-old-space-size=4096 --enable-source-maps --inspect benchmarks/internal/bench.mjs",
"test": "pnpm build --environment SOURCEMAP:false && c8 mocha 'tests/**/*.test.mjs'",
"test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.mjs'",
"coverage": "c8 report --reporter=lcov",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.0",
"sinon": "^17.0.1",
- "source-map-support": "^0.5.21",
"ts-standard": "^12.0.2",
"typedoc": "^0.25.3",
"typescript": "~5.2.2"
sinon:
specifier: ^17.0.1
version: 17.0.1
- source-map-support:
- specifier: ^0.5.21
- version: 0.5.21
ts-standard:
specifier: ^12.0.2
version: 12.0.2(eslint-import-resolver-typescript@3.6.1)(typescript@5.2.2)