Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
"skipFiles": ["<node_internals>/**"],
"stopOnEntry": true
},
- {
- "type": "node",
- "request": "launch",
- "name": "Launch Benchmark.js Benchmark Debug",
- "cwd": "${workspaceFolder}",
- "runtimeExecutable": "pnpm",
- "runtimeArgs": ["run", "benchmark:benchmark.js:debug"],
- "skipFiles": ["<node_internals>/**"],
- "stopOnEntry": true
- },
{
"type": "node",
"request": "launch",
import { writeFileSync } from 'node:fs'
-import { env, exit } from 'node:process'
+import { env } from 'node:process'
// eslint-disable-next-line n/no-unsupported-features/node-builtins
import { parseArgs } from 'node:util'
writeFileSync(benchmarkReportFile, JSON.stringify(benchmarkReport))
break
}
-
-exit()