角度2 npm开始重复标识符错误

时间:2017-06-14 22:17:07

标签: angular npm npm-start

我收到以下错误:

this is the error

当我在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
  }
}

0 个答案:

没有答案