tsconfig.json 638 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "module": "ESNext",
  5. "target": "ESNext",
  6. "lib": ["DOM", "ESNext"],
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "allowSyntheticDefaultImports": true,
  10. "jsx": "preserve",
  11. "moduleResolution": "node",
  12. "resolveJsonModule": true,
  13. "noUnusedLocals": true,
  14. "strictNullChecks": true,
  15. "forceConsistentCasingInFileNames": true,
  16. "paths": {
  17. "~/*": ["./*"],
  18. "@/*": ["./src/*"]
  19. },
  20. "types": ["vite/client", "node", "unplugin-icons/types/vue", "naive-ui/volar", "unplugin-vue-macros/macros-global"]
  21. },
  22. "exclude": ["node_modules", "dist"]
  23. }