{ "compilerOptions": { "target": "esnext", "useDefineForClassFields": true, "module": "esnext", "moduleResolution": "node", "strict": true, "noLib": false, "sourceMap": true, "resolveJsonModule": true, "esModuleInterop": true, "lib": ["esnext", "dom"], "baseUrl": ".", "allowJs": true, "typeRoots": ["./node_modules/@types/", "./types"], "paths": { "@/*": ["src/*"], "/#/*": ["types/*"] }, "types": ["vite/client"], "skipLibCheck": true /* Skip type checking all .d.ts files. */, "allowSyntheticDefaultImports": true /* 允许默认导入 */, "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, "jsx": "preserve", "jsxFactory": "h", "jsxFragmentFactory": "Fragment", "noImplicitAny": false }, "include": [ "src/**/*.ts", "src/**/*.vue", "types/**/*.d.ts", "vite.config.ts" ], "exclude": ["node_modules", "dist", "**/*.js"] }