mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
e81e88139a
Signed-off-by: Avinash <avinash.kumar.cs92@gmail.com>
25 lines
551 B
JSON
25 lines
551 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
|
|
},
|
|
"include": ["./src"],
|
|
"exclude": ["./dist"]
|
|
}
|