1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 15:37:24 +00:00

updated debug instructions to use only attach config

This commit is contained in:
Bowden
2018-01-03 14:57:08 -08:00
parent 3d48ff8cf8
commit 0b955f4881
3 changed files with 14 additions and 41 deletions

18
.vscode/launch.json vendored
View File

@@ -7,21 +7,9 @@
{
"type": "node",
"request": "attach",
"name": "Attach",
"port": 9229
},
{
"type": "node",
"request": "launch",
"name": "Debug",
"program": "${workspaceRoot}/dist/server.js",
"smartStep": true,
"outFiles": [
"../dist/**/*.js"
],
"preLaunchTask": "npm: build",
"name": "Attach by Process ID",
"processId": "${command:PickProcess}",
"protocol": "inspector"
}
]
}
}

View File

@@ -8,5 +8,8 @@
"typescript.referencesCodeLens.enabled": true,
"tslint.ignoreDefinitionFiles": false,
"tslint.autoFixOnSave": true,
"tslint.exclude": "**/node_modules/**/*"
"tslint.exclude": "**/node_modules/**/*",
"cSpell.words": [
"definitelytyped"
]
}