我收到以下错误:
当我在windows cmd中运行命令(npm-install)时它工作正常,但是当我使用命令npm start时它会给我一个错误"重复的标识符"在ts文件中。
我尝试删除节点模块然后运行命令npm install the problem persist。
这是我的tsconfig.json:
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"baseUrl": "./src/main/webapp",
"paths": {
},
"lib": [
"es2015",
"dom"
],
"typeRoots": [
"node_modules/@types"
]
},
"exclude": [
"node_modules",
"target"
],
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true
},
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}