Nativescript / TypeScript 错误 - 错误 TS5053:无法使用选项“inlineSourceMap”指定选项“sourceMap”

Posted

技术标签:

【中文标题】Nativescript / TypeScript 错误 - 错误 TS5053:无法使用选项“inlineSourceMap”指定选项“sourceMap”【英文标题】:Nativescript / TypeScript error - error TS5053: Option 'sourceMap' cannot be specified with option 'inlineSourceMap' 【发布时间】: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 这对我没用***.com/questions/46433144/… 【参考方案1】:

dashman 从 tsconfig.json 中删除源映射选项的答案是修复它。

【讨论】:

以上是关于Nativescript / TypeScript 错误 - 错误 TS5053:无法使用选项“inlineSourceMap”指定选项“sourceMap”的主要内容,如果未能解决你的问题,请参考以下文章

typescript NativeScript动画

使用 Typescript 时如何在 NativeScript 中访问 Native api

Nativescript / TypeScript 错误 - 错误 TS5053:无法使用选项“inlineSourceMap”指定选项“sourceMap”

使用 Angular 和 TypeScript 使用最新 NativeScript 中的参数进行导航

在 nativescript (with typescript) 项目中使用 obj-c 类时的编组设置

如何在nativescript typescript中动态创建xml组件