| 1234567891011121314151617181920212223242526272829303132 |
- {
- "files": [],
- "references": [
- { "path": "./tsconfig.app.json" },
- { "path": "./tsconfig.node.json" }
- ],
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "moduleResolution": "node",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "allowJs": true,
- "types": ["node", "vue"],
- "lib": ["dom", "esnext"],
- "sourceMap": true,
- "baseUrl": "./", // 确保 baseUrl 指向根目录
- "paths": {
- "@/*": ["src/*"] // 配置 @ 别名指向 src 目录
- }
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|