mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
25 lines
575 B
JSON
25 lines
575 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", "**/*.test.*", "**/__mocks__/*", "**/__tests__/*"]
|
||
|
}
|