123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "jsx": "preserve",
- "lib": ["DOM", "ESNext"],
- "noLib": false,
- "experimentalDecorators": true,
- "baseUrl": ".",
- "module": "ESNext",
- "moduleResolution": "node",
- "paths": {
- "@/*": ["src/*"]
- },
- "resolveJsonModule": true,
- "types": ["vite/client"],
- "allowJs": true,
- "strict": true,
- "strictFunctionTypes": false,
- "noImplicitAny": false,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "removeComments": true,
- "sourceMap": true,
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "skipLibCheck": true
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "src/types/**/*.d.ts",
- "src/types/**/*.ts",
- "build/**/*.ts",
- "build/**/*.d.ts",
- "vite.config.ts"
- ],
- "exclude": ["node_modules", "dist"]
- }
|