typeorm/tsconfig.json
Lucian Mocanu 7fb6ba7ed9
feat!: drop support for node 16 and 18 (#11382)
BREAKING CHANGE: TypeORM is now compiled for ECMAScript 2023, meaning old versions of Node.js are no longer supported. The minimum supported version of Node.js is 20.
2025-09-30 18:51:33 +02:00

27 lines
808 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": 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,
"useDefineForClassFields": false,
"useUnknownInCatchVariables": false
},
"exclude": ["build", "node_modules", "temp", "tmp", "sample/playground"],
"extends": "@tsconfig/node20/tsconfig.json",
"include": ["sample", "src", "test", "*.ts"]
}