hedgedoc/backend/tsconfig.json
Tilman Vatteroth 5299b569f7 fix(backend): keep log output in dev mode
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2023-03-28 11:34:05 +02:00

21 lines
511 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,
"preserveWatchOutput": true
}
}