123456789101112131415161718192021222324252627282930313233 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "moduleResolution": "node",
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "allowSyntheticDefaultImports": true,
- "strictFunctionTypes": false,
- "jsx": "preserve",
- "baseUrl": ".",
- "allowJs": true,
- "sourceMap": true,
- "esModuleInterop": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "experimentalDecorators": true,
- "lib": ["dom", "esnext"],
- "types": ["vite/client"],
- "incremental": true,
- "skipLibCheck": true,
- "paths": {
- "/@/*": ["src/*"]
- }
- },
- "plugins": [
- {
- "name": "@vuedx/typescript-plugin-vue"
- }
- ],
- "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
- "exclude": ["node_modules", "dist", "**/*.js"]
- }
|