使用TSC编译时如何修复Typeorm中的TS1005错误

时间:2019-04-09 17:03:02

标签: tsc typeorm

使用tsc进行编译时,我在两个typeorm文件中遇到TS1005错误:node_modules / typeorm / common / DeepPartial.d.ts和node_modules / typeorm / query-builder / QueryPartialEntity.d.ts。

我正在运行tsc 3.4.2版和typeorm 0.2.16版。

我试图在tsconfig.ts文件中显式排除文件,但仍然抛出错误。

Screenshot of error

{
   "compilerOptions": {
      "target": "ES6",
      "module": "commonjs",
      "moduleResolution": "node",
      "outDir": "./build",
      "emitDecoratorMetadata": true,
      "experimentalDecorators": true,
      "sourceMap": true
   },
   "exclude": [
       "node_modules",
       "**/*.spec.ts"
   ]
}

我希望tsc能够成功编译。

0 个答案:

没有答案