我无法在反应原生项目中的我的打字稿文件中点击我的断点。我在stackoverflow和github上看过各种类似的问题。 (here,here) 这是我的tsconfig.json:
{
"compilerOptions": {
"target": "es2015",
"module": "es2015",
"jsx": "react",
"outDir": "build",
"rootDir": "src",
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"experimentalDecorators": true,
"preserveConstEnums": true,
"allowJs": true,
"sourceMap": true
},
"filesGlob": [
"typings/index.d.ts",
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"index.android.js",
"index.ios.js",
"build",
"node_modules"
],
"compileOnSave": false
}
首先,我使用visual studio代码构建任务(ctrl + shift + B)构建我的源代码;每件事都构建良好,.js
文件在.js.map
个文件夹内生成./build
文件。
然后我在launch.json
中创建一个启动配置从visual studio代码中我开始调试过程(f5)。每件事都运行良好,应用程序加载并显示在我的genymotion模拟器中。
但是打字稿中的断点永远不会被击中。 (虽然它们在生成的.js
文件中被击中)
我完全迷失在这里。无论我做什么,我都无法让断点受到打击......
非常感谢任何帮助。