tsconfig.json 761 B

1234567891011121314151617181920212223242526272829303132
  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. "vite/client",
  15. "vite-plugin-vue-layouts/client",
  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. "isolatedModules": true,
  25. "skipLibCheck": true
  26. },
  27. "include": [
  28. "./src/typed-router.d.ts"
  29. ],
  30. "exclude": ["dist", "node_modules", "cypress"],
  31. "references": [{ "path": "./tsconfig.node.json" }],
  32. }