1234567891011121314151617181920 |
- {
- "extends": "@vue/tsconfig/tsconfig.json",
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "sourceMap": true,
- "baseUrl": "./",
- "jsx": "preserve",
- "skipLibCheck": true,
- "preserveValueImports": false,
- "isolatedModules": true,
- "paths": {
- "@/*": ["src/*"]
- },
- "lib": ["esnext", "dom"],
- "types": ["@dcloudio/types"]
- },
- "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
- "references": [{ "path": "./tsconfig.node.json" }]
- }
|