| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "extends": "@vue/tsconfig/tsconfig.web.json",
- "include": [
- "env.d.ts",
- "auto-import.d.ts",
- "components.d.ts",
- "src/**/*.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "tests/**/*.ts",
- "tests/**/*.tsx"
- ],
- "compilerOptions": {
- "target": "es5",
- "downlevelIteration": true,
- "module": "esnext",
- "strict": true,
- "jsx": "preserve",
- "importHelpers": true,
- "moduleResolution": "node",
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "suppressImplicitAnyIndexErrors": true,
- "forceConsistentCasingInFileNames": true,
- "useDefineForClassFields": true,
- "sourceMap": true,
- "baseUrl": "./",
- "types": [
- "node",
- "element-plus/global"
- ],
- "paths": {
- "@/*": [
- "src/*"
- ]
- },
- "lib": [
- "esnext",
- "dom",
- "dom.iterable",
- "scripthost"
- ]
- },
- "exclude": [
- "node_modules"
- ],
- "references": [
- {
- "path": "./tsconfig.config.json"
- }
- ]
- }
|