При компиляции с tsc я получаю ошибки TS1005 в двух файлах typeorm: 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, но он все равно выбросил ошибки.
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./build",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
},
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}
Я ожидаю, что TSC успешно скомпилируется.