tsconfig.json 556 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "module": "ESNext",
  5. "target": "ES2022",
  6. "lib": ["DOM", "ESNext"],
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "incremental": false,
  10. "skipLibCheck": true,
  11. "moduleResolution": "node",
  12. "resolveJsonModule": true,
  13. "noUnusedLocals": true,
  14. "strictNullChecks": true,
  15. "forceConsistentCasingInFileNames": true,
  16. "types": [
  17. "vite/client",
  18. "vite-plugin-pages/client"
  19. ],
  20. "paths": {
  21. "~/*": ["src/*"]
  22. }
  23. },
  24. "exclude": ["dist", "node_modules"]
  25. }