mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 11:16:31 -05:00
f238b216f9
Because of https://github.com/typeorm/typeorm/pull/9884, we need to manually disable useDefineForClassFields Signed-off-by: David Mehren <git@herrmehren.de>
20 lines
478 B
JSON
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
|
|
}
|
|
}
|