tsconfig.json 750 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "module": "ESNext",
  5. "target": "es2016",
  6. "lib": ["DOM", "ESNext"],
  7. "strict": true,
  8. "jsx": "preserve",
  9. "esModuleInterop": true,
  10. "skipLibCheck": true,
  11. "moduleResolution": "node",
  12. "resolveJsonModule": true,
  13. "noUnusedLocals": true,
  14. "strictNullChecks": true,
  15. "allowJs": true,
  16. "forceConsistentCasingInFileNames": true,
  17. "types": [
  18. "vite/client",
  19. "vite-plugin-pages/client",
  20. "unplugin-vue-macros/macros-global"
  21. ],
  22. "paths": {
  23. "~/*": ["src/*"]
  24. }
  25. },
  26. "vueCompilerOptions": {
  27. "plugins": [
  28. "@vue-macros/volar/define-model",
  29. "@vue-macros/volar/define-slots"
  30. ]
  31. },
  32. "exclude": ["dist", "node_modules"]
  33. }