123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "module": "ESNext",
- "moduleResolution": "bundler",
- "strict": false,
- "jsx": "preserve",
- "importHelpers": true,
- "experimentalDecorators": true,
- "strictFunctionTypes": false,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "isolatedModules": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "sourceMap": true,
- "baseUrl": ".",
- "allowJs": false,
- "resolveJsonModule": true,
- "lib": [
- "ESNext",
- "DOM"
- ],
- "paths": {
- "@/*": [
- "src/*"
- ],
- "@build/*": [
- "build/*"
- ]
- },
- "types": [
- "node",
- "vite/client"
- ]
- },
- "include": [
- "mock/*.ts",
- "src/**/*.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "src/typings/*.d.ts",
- "vite.config.ts",
- "./auto-imports.d.ts"
- ],
- "exclude": [
- "dist",
- "**/*.js",
- "node_modules"
- ]
- }
|