hedgedoc/backend/tsconfig.json
David Mehren f238b216f9 build: use node18 tsconfig preset
Because of https://github.com/typeorm/typeorm/pull/9884, we need to manually disable useDefineForClassFields

Signed-off-by: David Mehren <git@herrmehren.de>
2023-03-26 20:21:46 +02:00

20 lines
478 B
JSON

{
"extends": [
"@tsconfig/node18/tsconfig.json"
],
"compilerOptions": {
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"strict": true,
"strictPropertyInitialization": false,
"resolveJsonModule": true,
"useDefineForClassFields": false
}
}