Nativescript / TypeScript error - error TS5053: Option 'sourceMap' cannot be specified with option 'inlineSourceMap'

匿名 (未验证) 提交于 2019-12-03 00:53:01

问题:

{ "compilerOptions": {     "module": "commonjs",     "target": "es5",     "sourceMap": true,     "experimentalDecorators": true,     "emitDecoratorMetadata": true,     "noEmitHelpers": true,     "noEmitOnError": true,     "watch": true }, "exclude": [     "node_modules",     "platforms" ], "compileOnSave": true } 

Above is my tsconfig.json . I'm getting an error that I'm not understanding why i'm getting. any thoughts?

Here's the errors in debug console in vscode i'm getting

[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. 

回答1:

dashman's answer of removing the source map option from tsconfig.json was what fixed it.



易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!