hedgedoc/html-to-react/tsconfig.base.json
Tilman Vatteroth 97219ef497
test(html-to-react): replace jest with vitest
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2025-04-26 12:24:19 +02:00

20 lines
458 B
JSON

{
"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", "**/*.spec.tsx", "**/*.spec.ts"]
}