tsconfig.json 931 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  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. "vitest",
  15. "vite/client",
  16. "vite-plugin-vue-layouts/client",
  17. "vite-plugin-pwa/client",
  18. "unplugin-vue-macros/macros-global",
  19. "unplugin-vue-router/client"
  20. ],
  21. "allowJs": true,
  22. "strict": true,
  23. "strictNullChecks": true,
  24. "noUnusedLocals": true,
  25. "noEmit": true,
  26. "esModuleInterop": true,
  27. "forceConsistentCasingInFileNames": true,
  28. "isolatedModules": true,
  29. "skipLibCheck": true
  30. },
  31. "vueCompilerOptions": {
  32. "plugins": [
  33. "@vue-macros/volar/define-models",
  34. "@vue-macros/volar/define-slots"
  35. ]
  36. },
  37. "exclude": ["dist", "node_modules", "cypress", "omnimatrix-video-player"]
  38. }