1234567891011121314151617181920212223 |
- {
- "extends": "@vue/tsconfig/tsconfig.web.json",
- "include": [
- "global.d.ts",
- "src/**/*",
- "src/**/*.vue",
- "components.d.ts",
- "auto-imports.d.ts",
- "typings/**/*.d.ts"
- ],
- "compilerOptions": {
- "isolatedModules": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["./src/*"]
- }
- },
- "references": [
- {
- "path": "./tsconfig.config.json"
- }
- ]
- }
|