hedgedoc/backend/tsconfig.json
Tilman Vatteroth 7401791ec8 fix(backend): allowjs in tsconfig.json
Prevents a warning in the backend unit tests about allowing JS code.

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2023-08-13 20:38:53 +02:00

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
}
}