Files
scrypted/sdk/.vscode/launch.json
2021-11-13 00:47:56 -08:00

28 lines
870 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"autoAttachChildProcesses": false,
"type": "pwa-node",
"request": "launch",
"name": "Launch Build TS Node",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/gen/build.ts",
"runtimeArgs": [
"--expose-gc",
"--nolazy",
"-r",
"ts-node/register"
],
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
},
]
}