| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "compilerOptions": {
- "target": "esnext",
- "useDefineForClassFields": true,
- "module": "nodenext",
- "moduleResolution": "nodenext",
- "lib": [
- "ESNext",
- "DOM"
- ],
- "jsx": "preserve",
- "esModuleInterop": true,
- "skipLibCheck": true,
- "sourceMap": true,
- "baseUrl": "./",
- "ignoreDeprecations": "6.0",
- "paths": {
- "@/*": [
- "src/*"
- ]
- },
- "types": [
- "vite/client"
- ]
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "env.d.ts",
- "./auto-imports.d.ts"
- ],
- "references": [
- {
- "path": "./tsconfig.node.json"
- }
- ]
- }
|