Files
ontime/apps/client/tsconfig.json
T
Alex Christoffer Rasmussen c522860d28 Remove public event feature (#1645)
2025-06-19 18:07:42 +02:00

48 lines
1016 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"types": [
"vite/client",
"vite-plugin-svgr/client",
"vitest/globals"
],
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noImplicitThis": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"removeComments": true,
"preserveConstEnums": true,
"allowJs": true,
"baseUrl": "src",
"jsx": "react-jsx"
},
"include": [
"src"
],
"typeRoots": [
"./src/declarations/**"
],
"exclude": [
"node_modules",
"build",
]
}