tsconfig.json 692 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "jsx": "preserve",
  5. "lib": ["DOM", "ESNext"],
  6. "baseUrl": ".",
  7. "module": "ESNext",
  8. "moduleResolution": "node",
  9. "paths": {
  10. "~/*": ["src/*"]
  11. },
  12. "resolveJsonModule": true,
  13. "types": [
  14. "vitest",
  15. "vite/client",
  16. "unplugin-icons/types/vue",
  17. "@intlify/unplugin-vue-i18n/messages"
  18. ],
  19. "allowJs": true,
  20. "strict": true,
  21. "strictNullChecks": true,
  22. "noImplicitAny": false,
  23. "noUnusedLocals": true,
  24. "esModuleInterop": true,
  25. "forceConsistentCasingInFileNames": true,
  26. "isolatedModules": true,
  27. "skipLibCheck": true
  28. },
  29. "exclude": ["dist", "node_modules"]
  30. }