update launch.json to allow stepping into symlinked dependecies
This commit is contained in:
parent
eaeb04a978
commit
99f57335ed
|
@ -10,13 +10,18 @@
|
||||||
// todo?: make relative to ${file}
|
// todo?: make relative to ${file}
|
||||||
"cwd": "${workspaceFolder}/packages/status-js",
|
"cwd": "${workspaceFolder}/packages/status-js",
|
||||||
"program": "${workspaceRoot}/node_modules/vite-node/dist/cli.mjs",
|
"program": "${workspaceRoot}/node_modules/vite-node/dist/cli.mjs",
|
||||||
"args": ["${file}"],
|
"args": ["--options.sourcemap=inline", "${file}"],
|
||||||
"smartStep": true,
|
"smartStep": true,
|
||||||
"sourceMaps": true,
|
"sourceMaps": true,
|
||||||
"env": {
|
"env": {
|
||||||
"DEBUG": "*",
|
"DEBUG": "*",
|
||||||
|
"DEBUG_HIDE_DATE": "0",
|
||||||
|
"DEBUG_COLORS": "1",
|
||||||
"VITE_NODE": "true"
|
"VITE_NODE": "true"
|
||||||
}
|
},
|
||||||
|
"runtimeArgs": ["--preserve-symlinks"],
|
||||||
|
"outFiles": ["${workspaceFolder}/**/*.js"],
|
||||||
|
"resolveSourceMapLocations": ["**/*"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
|
|
Loading…
Reference in New Issue