mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
28 lines
833 B
JSON
28 lines
833 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"downlevelIteration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"outDir": "build/compiled",
|
|
"pretty": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"strictFunctionTypes": false,
|
|
"strictPropertyInitialization": false,
|
|
"stripInternal": true,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"exclude": ["build", "node_modules", "temp", "tmp", "sample/playground"],
|
|
"extends": "@tsconfig/node16/tsconfig.json",
|
|
"include": ["sample", "src", "test", "*.ts"]
|
|
}
|