123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "compilerOptions": {
- "declaration": false,
- "noImplicitAny": false,
- "removeComments": true,
- "noLib": false,
- "experimentalDecorators": true,
- "forceConsistentCasingInFileNames": true,
-
- "target": "esnext",
- "useDefineForClassFields": true,
- "module": "esnext",
- "moduleResolution": "node",
- "strict": true,
- "jsx": "preserve",
- "sourceMap": true,
- "resolveJsonModule": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "allowSyntheticDefaultImports": true,
- "lib": ["esnext", "dom"],
-
- "types": [
- "vite/client",
- "node",
- "naive-ui/volar"
- ],
- "baseUrl": "./",
- "paths": {
- "@/*": [
- "src/*"
- ]
- }
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.md",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "__tests__/**/*.ts",
- "./auto-imports.d.ts",
- "./components.d.ts",
- "./components-instance.d.ts"
- ],
- "exclude": ["node_modules"]
- }
|