hedgedoc/commons/tsconfig.json
Tilman Vatteroth 9ccfaf3d0e fix(commons): remove redundant tsconfig for eslint
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2023-02-05 21:21:59 +01:00

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"]
}