我收到以下错误:
当我在 windows cmd 中运行命令(npm-install)时,它工作正常,但是当我使用命令 npm start 时,它在 ts 文件中给我一个错误“重复标识符”。
我尝试删除节点模块,然后运行命令 npm install 问题仍然存在。
这是我的 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
}
}