mirror of
https://github.com/Awuqing/BackupX.git
synced 2026-05-07 08:23:06 +08:00
35 lines
928 B
JSON
35 lines
928 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"types": ["vite/client"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": [
|
|
"src/**/*.test.ts",
|
|
"src/**/*.test.tsx",
|
|
"src/app.tsx",
|
|
"src/components/auth-guard.tsx",
|
|
"src/components/page-card.tsx",
|
|
"src/layouts/protected-layout.tsx",
|
|
"src/pages/dashboard/page.tsx",
|
|
"src/pages/login/page.tsx",
|
|
"src/pages/system-info/page.tsx",
|
|
"src/stores/auth.test.ts"
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|