| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "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": {
- "ignoreDeprecations": "5.0",
- "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"
- }
- ]
- }
|