目录I中的Typescript编译器错误已被排除

时间:2017-09-05 07:22:42

标签: typescript

为什么我会收到Typescript编译器错误,如:

  

../ node_modules/@types/bluebird/index.d.ts(50,17):错误TS1005:','预期

这是我的tsconfig.json,我特意排除了这条路径:

{
  "compilerOptions": {
    "target": "es6",
    "module": "commonjs",
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "allowSyntheticDefaultImports": true,
    "sourceMap": true,
    "strictNullChecks": false
  },
  "exclude": [
    "../node_modules/**"
  ]
}

0 个答案:

没有答案