mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 09:16:30 -05:00
ffe48f2fd2
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
21 lines
477 B
JSON
21 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"]
|
|
}
|