12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "extends": "@vue/tsconfig/tsconfig.web.json",
- "include": [
- "src/**/*.ts",
- "src/.d.ts/*.d.ts",
- "src/.d.ts/**/*.d.ts",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "vite/**/*.ts",
- ".eslintrc.cjs",
- "vite.config.ts",
- "src/.d.ts/vite-env.d.ts"
- ],
- "compilerOptions": {
- "target": "ESNext",
- "lib": ["ES2017"],
- "noImplicitAny": false,
- "types": ["element-plus/global"],
- "ignoreDeprecations": "5.0",
- "baseUrl": "./",
- "paths": {
- "@a": ["src/api"],
- "@a/*": ["src/api/*"],
- "@s": ["src/stores"],
- "@s/*": ["src/stores/*"],
- "@r": ["src/router"],
- "@r/*": ["src/router/*"],
- "@v/*": ["src/views/*"],
- "@@/*": ["src/core/*"],
- "@@@/*": ["src/components/*"],
- "@com/*": ["src/components/*"],
- "@/*": ["src/*"],
- "~/*": ["./*"]
- }
- },
- "exclude": ["node_modules"],
- "references": [{ "path": "./tsconfig.config.json" }]
- }
|