123456789101112131415161718192021 |
- {
- "extends": "@vue/tsconfig/tsconfig.json",
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "sourceMap": true,
- "baseUrl": "./",
- "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"}]
- }
|