2026-05-09 12:19:19 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"types": ["vite/client"]
|
|
|
|
|
},
|
2026-05-13 17:38:35 +08:00
|
|
|
"include": ["src"],
|
|
|
|
|
"exclude": ["src/sw.ts"]
|
2026-05-09 12:19:19 +08:00
|
|
|
}
|