这在驱赶我香蕉。 VS Code版本为1.24.1。
tsconfig.app.json看起来像这样:
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"module": "es2015",
"sourceMap":true,
"types": []
},
"exclude": [
"src/test.ts",
"**/*.spec.ts"
]
}
launch.json看起来像这样:
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach",
"port": 4200
},
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}",
"sourceMaps":true
}
]
}
自定义用户设置:
{
"typescript.updateImportsOnFileMove.enabled": "always",
"debug.allowBreakpointsEverywhere": true,
"debug.enableAllHovers": true,
"debug.inlineValues": true,
}
这是一个简单的angular 6应用程序。
在VS Code中不会碰到一个断点。没有。我在这里想念什么。从字面上看,这确实是可行的,但新安装的VS 2017 Professional只是机器上的环境差异。否则,没有区别。