| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "ESNext", |
| 4 | "jsx": "preserve", |
| 5 | "lib": ["DOM", "ESNext"], |
| 6 | "module": "ESNext", |
| 7 | "moduleResolution": "bundler", |
| 8 | "resolveJsonModule": true, |
| 9 | "types": [ |
| 10 | "vite/client", |
| 11 | "node" |
| 12 | ], |
| 13 | "strict": true, |
| 14 | "strictNullChecks": true, |
| 15 | "noUnusedLocals": true, |
| 16 | "esModuleInterop": true, |
| 17 | "forceConsistentCasingInFileNames": true, |
| 18 | "skipLibCheck": true |
| 19 | }, |
| 20 | "include": [ |
| 21 | "./*.ts", |
| 22 | "./.vitepress/**/*.ts", |
| 23 | "./.vitepress/**/*.vue" |
| 24 | ], |
| 25 | "exclude": ["**/dist/**", "node_modules"] |
| 26 | } |
| 27 |