mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2026-06-23 04:10:17 +00:00
78062bb75c
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
23 lines
528 B
JSON
23 lines
528 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,
|
|
"types": ["node"],
|
|
"typeRoots": ["./types", "../node_modules/@types"],
|
|
},
|
|
"include": ["./src", "./types"],
|
|
"exclude": ["./dist", "**/*.test.ts"]
|
|
}
|