1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "jsx": "preserve",
- "lib": ["DOM", "ESNext"],
- "baseUrl": ".",
- "module": "ESNext",
- "moduleResolution": "Bundler",
- "paths": {
- "~/*": ["src/*"]
- },
- "resolveJsonModule": true,
- "types": [
- "vitest",
- "vite/client",
- "vite-plugin-vue-layouts/client",
- "vite-plugin-pwa/client",
- "unplugin-vue-macros/macros-global",
- "unplugin-vue-router/client"
- ],
- "allowJs": true,
- "strict": true,
- "strictNullChecks": true,
- "noUnusedLocals": true,
- "noEmit": true,
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "isolatedModules": true,
- "skipLibCheck": true
- },
- "vueCompilerOptions": {
- "plugins": [
- "@vue-macros/volar/define-models",
- "@vue-macros/volar/define-slots"
- ]
- },
- "exclude": ["dist", "node_modules", "cypress", "omnimatrix-video-player"]
- }
|