我正在使用Visual Studio 2015 Apache Cordova在窗口10上开发Ionic 2 + TypeScript应用程序。我有一个可以工作的应用程序。但是当我调试(Debug> Android> Ripple)时,调试输出窗口不显示调试消息。相反,我收到以下消息:
” 代码:-32000消息:未启用调试器代理无法从文件'C:... \ www \ build \ js \ es6-shim.min.js'中读取源映射'es6-shim.map'指定的位置由于错误'异常类型'TypeScriptSourceMapReader.SourceMapReadFailedException'被抛出。'。
我的tsconfig.json:
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"emitDecoratorMetadata": true,
"sourceMap": true,
"experimentalDecorators": true
},
"filesGlob": [
"**/*.ts",
"!node_modules/**/*"
],
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
],
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}
我的项目:Img Projet
如何解决此错误?