tsconfig.json 658 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compilerOptions": {
  3. "target": "es2016",
  4. "jsx": "preserve",
  5. "lib": ["DOM", "ESNext"],
  6. "baseUrl": ".",
  7. "module": "ESNext",
  8. "moduleResolution": "bundler",
  9. "paths": {
  10. "~/*": ["src/*"]
  11. },
  12. "resolveJsonModule": true,
  13. "types": [
  14. "vite/client",
  15. "unplugin-vue-macros/macros-global",
  16. "unplugin-vue-router/client"
  17. ],
  18. "allowJs": true,
  19. "strict": true,
  20. "strictNullChecks": true,
  21. "noUnusedLocals": true,
  22. "esModuleInterop": true,
  23. "forceConsistentCasingInFileNames": true,
  24. "skipLibCheck": true
  25. },
  26. "exclude": [
  27. "dist",
  28. "node_modules",
  29. "eslint.config.js"
  30. ]
  31. }