mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
44 lines
784 B
JSON
44 lines
784 B
JSON
{
|
|
"extends": "../../tsconfig.common.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-svgr/client"
|
|
],
|
|
"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",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.test.tsx",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.spec.tsx",
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.tests.json"
|
|
}
|
|
]
|
|
}
|