【发布时间】:2017-06-21 19:36:33
【问题描述】:
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmitHelpers": true,
"noEmitOnError": true,
"watch": true
},
"exclude": [
"node_modules",
"platforms"
],
"compileOnSave": true
}
上面是我的 tsconfig.json 。我收到一个错误,我不明白我为什么会收到。有什么想法吗?
这是我得到的 vscode 调试控制台中的错误
[NativeScriptCli] execute: tns --version
[NSDebugAdapter] Using tns CLI v2.5.0 on path 'tns'
[NSDebugAdapter] Running tns command...
[NativeScriptCli] execute: tns debug ios --no-client --watch
[NSDebugAdapter] Watching the tns CLI output to receive a connection token
Executing before-prepare hook from /Users/USERNAME/Projects/Project-tns/hooks/before-prepare/nativescript-dev-sass.js
Executing before-prepare hook from /Users/USERNAME/Projects/Project-tns/hooks/before-prepare/nativescript-dev-typescript.js
Found peer TypeScript 2.2.0
error TS5053: Option 'sourceMap' cannot be specified with option 'inlineSourceMap'.
7:34:42 AM - Compilation complete. Watching for file changes.
【问题讨论】:
-
在该文件中 - 删除 sourceMap 选项 - ts 将不再生成 .map 文件。不确定在哪里指定了 inlineSourceMap。
-
非常感谢您修复它:-)
-
@dashman 这对我没用stackoverflow.com/questions/46433144/…
标签: typescript visual-studio-code nativescript angular2-nativescript