25 lines
647 B
JSON
25 lines
647 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": false,
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"allowJs": false,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"jsx": "react-jsx",
|
|
"noEmit": true,
|
|
"types": ["vite/client"]
|
|
},
|
|
"include": ["src", "vite.config.ts"],
|
|
"exclude": [
|
|
"src/pages/AdminCreationEntrySwitchPage.tsx",
|
|
"src/pages/AdminCreationEntrySwitchPage.test.tsx",
|
|
"src/pages/AdminWorkVisibilityPage.tsx"
|
|
]
|
|
}
|