node.js - webpack typescript2.x 出现Duplicate identifier错误
PHP中文网
PHP中文网 2017-04-17 15:42:02
0
1
397
PHP中文网
PHP中文网

认证0级讲师

모든 응답(1)
大家讲道理

解决了
修改tsconfig.json

{
  "compilerOptions": {
    "declaration": false,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "module": "commonjs",
    "moduleResolution": "node",
    "outDir": "dist",
    "sourceMap": true,
    "sourceRoot": "src",
    "target": "es5",
    "types": [
      "node",
      "core-js",
      "express"
    ],
    "baseUrl": "."
  },
  "include": [
      "src/**/*"
  ],
  "exclude": [
    "node_modules",
    "dist"
  ],
  "awesomeTypescriptLoaderOptions": {
    "useWebpackText": true,
    "forkChecker": true
  },
  "compileOnSave": false,
  "buildOnSave": false,
  "atom": { "rewriteTsconfig": false }
}
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿