2026-07-03 09:22:03 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-07-03 15:51:03 +08:00
|
|
|
"target": "ES2022",
|
|
|
|
|
"lib": [
|
|
|
|
|
"ES2022",
|
|
|
|
|
"DOM",
|
|
|
|
|
"DOM.Iterable"
|
|
|
|
|
],
|
|
|
|
|
"module": "ESNext",
|
2026-07-03 09:22:03 +08:00
|
|
|
"moduleResolution": "bundler",
|
2026-07-03 15:51:03 +08:00
|
|
|
"allowImportingTsExtensions": true,
|
2026-07-03 09:22:03 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
2026-07-03 15:51:03 +08:00
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"noEmit": true,
|
2026-07-03 09:22:03 +08:00
|
|
|
"jsx": "react-jsx",
|
2026-07-03 15:51:03 +08:00
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"baseUrl": ".",
|
2026-07-03 09:22:03 +08:00
|
|
|
"paths": {
|
2026-07-03 15:51:03 +08:00
|
|
|
"@/*": [
|
|
|
|
|
"./src/*"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"types": [
|
|
|
|
|
"node",
|
|
|
|
|
"vitest/globals",
|
|
|
|
|
"@testing-library/jest-dom"
|
|
|
|
|
]
|
2026-07-03 09:22:03 +08:00
|
|
|
},
|
|
|
|
|
"include": [
|
2026-07-03 15:51:03 +08:00
|
|
|
"src/**/*.ts",
|
|
|
|
|
"src/**/*.tsx",
|
|
|
|
|
"src/**/*.d.ts",
|
|
|
|
|
"scripts/**/*.ts",
|
|
|
|
|
"vite.config.ts",
|
|
|
|
|
"vitest.config.ts",
|
|
|
|
|
"playwright.config.ts",
|
|
|
|
|
"e2e/**/*.ts"
|
2026-07-03 09:22:03 +08:00
|
|
|
],
|
2026-07-03 15:51:03 +08:00
|
|
|
"exclude": [
|
|
|
|
|
".next",
|
|
|
|
|
"coverage",
|
|
|
|
|
"dist",
|
|
|
|
|
"node_modules",
|
|
|
|
|
"playwright-report",
|
|
|
|
|
"test-results"
|
|
|
|
|
]
|
2026-07-03 09:22:03 +08:00
|
|
|
}
|