mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-17 17:28:09 +00:00
28 lines
729 B
JSON
28 lines
729 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": [
|
|
{
|
|
"name": "Debug Scaffold",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"protocol": "inspector",
|
|
"cwd": "${workspaceFolder}",
|
|
"program": "${workspaceFolder}/test.ts",
|
|
"outFiles": ["${workspaceRoot}/dist/test.js"],
|
|
"env": {
|
|
"NODE_ENV": "develop"
|
|
},
|
|
"sourceMaps": true
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Attach by Process ID",
|
|
"processId": "${command:PickProcess}"
|
|
}
|
|
]
|
|
}
|