Files
ontime/apps/client/tsconfig.tests.json
T
2026-02-08 11:20:09 +01:00

41 lines
761 B
JSON

{
"extends": "../../tsconfig.tests.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",
"composite": true
},
"include": [
"src/**/*.test.ts",
"src/**/*.test.tsx",
"src/**/*.spec.ts",
"src/**/*.spec.tsx",
],
"references": [
{
"path": "./tsconfig.json"
}
],
"typeRoots": [
"./src/declarations/**"
]
}