mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
36 lines
694 B
JSON
36 lines
694 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",
|
|
],
|
|
"typeRoots": [
|
|
"./src/declarations/**"
|
|
]
|
|
}
|