React 工程编译出错提示错误:Duplicate identifier 'LibraryManagedAttributes'.的修改方法
Posted wzihan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React 工程编译出错提示错误:Duplicate identifier 'LibraryManagedAttributes'.的修改方法相关的知识,希望对你有一定的参考价值。
现象:
Failed to compile.
(2818,14): Duplicate identifier ‘LibraryManagedAttributes‘.
Duplicate identifier问题的解决
修改方法:
1. 找到tsconfig.json文件
解决方案是在tsconfig.json的compilerOption中加入下面两项:
"skipLibCheck": true,
"allowSyntheticDefaultImports": true
12
完整例子:
{ "compilerOptions": { "module": "commonjs", "target": "es6", "outDir": "out", "rootDir": "src", "sourceMap": true, "skipLibCheck": true, "allowSyntheticDefaultImports": true }, "include": ["src"], "exclude": ["node_modules", ".vscode-test"], }
以上是关于React 工程编译出错提示错误:Duplicate identifier 'LibraryManagedAttributes'.的修改方法的主要内容,如果未能解决你的问题,请参考以下文章
Typescript 在使用 create react app 进行编译时不会出错
在linux环境下,php语法出错,怎样让php编译后提示编译错误,错误在哪?
vs2010新建立的mfc工程编译就出错error C2065: “DWORD_PTR”: 未声明的标识符