mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
9ccfaf3d0e
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
24 lines
524 B
JSON
24 lines
524 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"lib": [
|
|
"es2020",
|
|
"dom"
|
|
],
|
|
"declaration": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"outDir": "dist/",
|
|
"rootDir": "./src",
|
|
"allowJs": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["./src"],
|
|
"exclude": ["./dist"]
|
|
}
|