mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
* build: set TS compile target to ES2021 * docs: update minimum supported node version * build: use @tsconfig/node16
37 lines
935 B
JSON
37 lines
935 B
JSON
{
|
|
"extends": "@tsconfig/node16/tsconfig.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,
|
|
"sourceMap": true,
|
|
"strictFunctionTypes": false,
|
|
"strictPropertyInitialization": false,
|
|
"stripInternal": true,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": [
|
|
"sample",
|
|
"src",
|
|
"test",
|
|
"*.ts"
|
|
],
|
|
"exclude": [
|
|
"build",
|
|
"node_modules",
|
|
"temp",
|
|
"tmp"
|
|
]
|
|
}
|