mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
# Conflicts: # .github/workflows/commit-validation.yml # .github/workflows/preview.yml # .github/workflows/publish-package.yml # README-zh_CN.md # README_ko.md # docs/docs/query-runner.md # eslint.config.mjs # package-lock.json # package.json # src/commands/InitCommand.ts # src/driver/sqlserver/MssqlParameter.ts # test/utils/xfail.ts
28 lines
839 B
JSON
28 lines
839 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,
|
|
"resolveJsonModule": 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"]
|
|
}
|