我是一个java爱好者,是nodejs的新手。我正在做一个现有的打字项目。我无法调试我的应用程序。断点变灰,并显示"0";断点集但尚未绑定";
VS CODE
-------
Version: 1.46.1 (user setup)
Commit: cd9ea6488829f560dc949a8b2fb789f3cdc05f5d
Date: 2020-06-17T21:13:20.174Z
Electron: 7.3.1
Chrome: 78.0.3904.130
Node.js: 12.8.1
V8: 7.8.279.23-electron.0
OS: Windows_NT x64 10.0.18363
launch.json
----------
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Prospector",
"program": "${workspaceFolder}/dist/main.js",
"preLaunchTask": "npm: build",
"env": {"NODE_ENV":"loc"},
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"skipFiles": [
"${workspaceFolder}/node_modules//*.js",
"<node_internals>//*.js"
]
}
]
}
tsconfig.json
--------
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": [
"es6",
"esnext"
],
"declaration": false,
"sourceMap": true,
"outDir": "dist",
"rootDir": "src",
"removeComments": true,
"strict": true,
"noImplicitAny": true,
"moduleResolution": "node",
"strictNullChecks": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"exclude": [
"tools"
]
}
Debug Console
------------
C:Program Filesnodejsnode.exe --inspect-brk=20574 C:DataworkNodeProjectsreu-ext-gql-apidistmain.js
Debugger listening on ws://127.0.0.1:20574/537adef1-2250-40b3-8980-b43c0f751836
For help, see: https://nodejs.org/en/docs/inspector
Fetching config from local config files
config.factory.ts:25
Apollo Server (graphQL) listens on http://localhost:8080/RegisteredEndUserExtended
启动应用程序时,它会在node_modules文件夹中的config.ts文件中设置的断点处停止,继续运行时,应用程序会正常启动。当发送graphql请求时,我会得到响应。但它不会停止在src目录中的.ts文件(解析器(或dist目录中的.js文件中设置的断点。我也尝试过使用VS代码1.51.1,但没有运气。请帮忙。
提前感谢
让我们与我的工作配置进行比较,也许它可以帮助您了解出了什么问题(我首先看到了我启动TS文件与您启动JS文件的区别(:
{
"type": "node",
"request": "launch",
"name": "Launch TS Program",
"program": "${workspaceFolder}/app.ts",
"env": {
"NODE_ENV": "standalone"
},
"preLaunchTask": "tsc: build - tsconfig.json",
"cwd": "${workspaceFolder}",
"outFiles": [
"${workspaceFolder}/build/**/*.js"
],
"sourceMaps": true,
"outputCapture": "std"
},
和tsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"sourceMap": true,
"outDir": "build",
"typeRoots": [
"@types",
"node_modules/@types"
]
},
"include": [
"application/**/*",
"@types/**/*",
"app.ts"
]
}