Files
anthill-pot/.vscode/launch.json

30 lines
735 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Node Inspector",
"type": "node",
"request": "launch",
"args": ["${workspaceRoot}/src/app.ts", "start", "-p", "1234"],
"runtimeArgs": [
"--no-warnings",
"--loader",
"./src/myloader.mjs",
"--experimental-modules",
"--es-module-specifier-resolution=node"
],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"sourceMaps": true,
"trace": "all",
"outputCapture": "std",
"internalConsoleOptions": "openOnSessionStart",
"env": {
"TS_NODE_IGNORE": "false",
"NODE_ENV": "development",
"TS_NODE_COMPILER": "ttypescript"
}
}
]
}