mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 09:16:30 -05:00
8bd7fd1be8
Signed-off-by: Philip Molares <philip.molares@udo.edu>
26 lines
592 B
JSON
26 lines
592 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,
|
|
"declarationMap":true,
|
|
"sourceMap": true,
|
|
"typeRoots": ["./types"]
|
|
},
|
|
"include": ["./src", "./types"],
|
|
"exclude": ["./dist"]
|
|
}
|