1
0
Fork 0
mirror of https://github.com/hedgedoc/hedgedoc.git synced 2025-01-12 11:01:13 +00:00
hedgedoc/html-to-react/tsconfig.base.json

21 lines
425 B
JSON
Raw Normal View History

{
"compilerOptions": {
"removeComments": true,
"preserveConstEnums": true,
"lib": [
"es2022",
"dom"
],
"declaration": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"jsx": "react"
},
"include": ["src"],
"exclude": ["dist", "**/*.test.ts"]
}