1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| {
| "compilerOptions": {
| "baseUrl": ".",
| "module": "ESNext",
| "target": "ESNext",
| "lib": ["DOM", "ESNext"],
| "strict": true,
| "esModuleInterop": true,
| "allowSyntheticDefaultImports": true,
| "jsx": "preserve",
| "moduleResolution": "node",
| "resolveJsonModule": true,
| "noUnusedLocals": true,
| "strictNullChecks": true,
| "forceConsistentCasingInFileNames": true,
| "skipLibCheck": true,
| "paths": {
| "@/*": ["./src/*"]
| },
| "types": ["vite/client", "node", "naive-ui/volar"]
| },
| "exclude": ["node_modules", "dist", "service"]
| }
|
|