mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-10-31 16:10:36 -04:00
7401791ec8
Prevents a warning in the backend unit tests about allowing JS code. Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
22 lines
532 B
JSON
22 lines
532 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,
|
|
"allowJs": true
|
|
}
|
|
}
|