mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-10-26 11:38:13 +00:00
Co-authored-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Erik Michelson <github@erik.michelson.eu>
22 lines
477 B
JSON
22 lines
477 B
JSON
{
|
|
"compilerOptions": {
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"lib": [
|
|
"es2022",
|
|
"dom"
|
|
],
|
|
"declaration": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"declarationMap":true,
|
|
"sourceMap": true,
|
|
"typeRoots": ["./types"]
|
|
},
|
|
"include": ["./src", "./types"],
|
|
"exclude": ["./dist", "**/*.test.ts"]
|
|
}
|