1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| {
| "compilerOptions": {
| "allowSyntheticDefaultImports": true,
| "esModuleInterop": true,
| "lib": ["ES2022", "DOM"],
| "module": "ESNext",
| "moduleResolution": "Bundler",
| "noEmit": true,
| "skipLibCheck": true,
| "strict": true,
| "target": "ES2022",
| "types": ["node", "vite/client", "vitest/globals"]
| },
| "include": ["src/**/*.ts", "src/**/*.vue", "tests/**/*.ts", "vite.config.ts"]
| }
|
|