Files
ontime/apps/client/tsconfig.json
Alex Christoffer Rasmussen 1dfe5c980d refactor: collect common tsconfig (#1794)
* refactor: collect common tsconfig settings

* chore: module and target should be lower case
2025-09-26 21:34:01 +02:00

36 lines
637 B
JSON

{
"extends": "../../tsconfig.common.json",
"compilerOptions": {
"target": "esnext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"types": [
"vite/client",
"vite-plugin-svgr/client",
"vitest/globals"
],
"module": "esnext",
"moduleResolution": "node",
"allowUnusedLabels": false,
"removeComments": true,
"preserveConstEnums": true,
"allowJs": true,
"baseUrl": "src",
"jsx": "react-jsx",
"outDir": "build"
},
"include": [
"src"
],
"typeRoots": [
"./src/declarations/**"
],
"exclude": [
"node_modules",
"build",
]
}