mirror of
https://github.com/koush/scrypted.git
synced 2026-03-14 22:32:13 +00:00
28 lines
870 B
JSON
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/**"
|
|
],
|
|
},
|
|
]
|
|
} |