在vs代码编辑器中调试typescript项目文件时,如何防止进入node_modules / * .js文件。当我在typescipt文件上使用berakpoint启动调试过程时,我想要跳过js node_modules目录下的文件自动。
//我的launch.json
{
"version": "0.2.0",
"configurations": [ {
"name": "LaunchChrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:4200",
"sourceMaps": true,
"trace": true,
"webRoot": "${workspaceRoot}",
"userDataDir": "${workspaceRoot}/.vscode/chrome",
"runtimeArgs": [ "--disable-web-security"]
} ]
}
答案 0 :(得分:2)
将以下内容添加到launch.json ...
"skipFiles": [
"${workspaceRoot}/node_modules/**/*.js"
]
根据您的问题,您可能还想排除以下内容......
"skipFiles": [
"${workspaceRoot}/node_modules/**/*.js",
"<node_internals>/**/*.js"
]
如果您愿意,还可以排除node internal files(net.js,events.js等)。
通过文档here