zoukankan      html  css  js  c++  java
  • 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"],
    }
    

      



  • 相关阅读:
    vgcreate语法
    lsmod语法
    lvm语法2
    lvm语法
    mount语法
    fdisk语法
    mdadm语法
    ln语法
    mknod语法
    黑客常用dos-cmd命令
  • 原文地址:https://www.cnblogs.com/wzihan/p/13070297.html
Copyright © 2011-2022 走看看