| 1234567891011121314151617181920212223242526272829303132333435 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "jsx": "preserve",
- "jsxImportSource": "vue",
- "lib": ["DOM", "ESNext"],
- "baseUrl": ".",
- "module": "ESNext",
- "moduleResolution": "node",
- "paths": {
- "~/*": ["src/*"],
- "@/*": ["src/*"]
- },
- "resolveJsonModule": true,
- "types": [],
- "allowJs": true,
- "strict": true,
- "strictNullChecks": true,
- "noUnusedLocals": true,
- "importHelpers": true,
- "outDir": "dist",
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "skipLibCheck": true
- },
- "exclude": ["node_modules", "dist/**/*", "public/**/*"],
- "vueCompilerOptions": {
- "target": 3, // or 2.7 for Vue 2
- "plugins": [
- "@vue-macros/volar/define-props-refs",
- "@vue-macros/volar/define-props"
- ]
- }
- }
|