| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "extends": "@vue/tsconfig/tsconfig.dom.json",
- "compilerOptions": {
- "types": ["unplugin-icons/types/vue", "element-plus/global"],
- "target": "esnext",
- "module": "esnext",
- "moduleResolution": "bundler",
- "strict": true,
- "noLib": false,
- "forceConsistentCasingInFileNames": true,
- "allowSyntheticDefaultImports": true,
- "strictFunctionTypes": false,
- "jsx": "preserve",
- "allowJs": true,
- "sourceMap": true,
- "esModuleInterop": true,
- "resolveJsonModule": true,
- "experimentalDecorators": true,
- "lib": ["dom", "esnext"],
- "noImplicitAny": false,
- "skipLibCheck": true,
- "removeComments": true,
- "jsxImportSource": "vue",
- "paths": {
- "@/*": ["./src/*"],
- "@components/*": ["./src/components/*"],
- "@style/*": ["./src/styles/*"],
- "@images/*": ["./src/assets/static/images/*"],
- "types/*": ["./types/*"]
- },
- "noUnusedLocals": false,
- "noUnusedParameters": false,
- "noFallthroughCasesInSwitch": true
- },
- "include": [
- "src/**/*.d.ts",
- "src/**/*.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "types/**/*.d.ts",
- "types/**/*.ts",
- "config/**/*.ts"
- ],
- "exclude": [
- "node_modules",
- "dist",
- "dist-ssr",
- ".rsbuild",
- "**/*.js",
- "**/*.md",
- "src/**/*.md"
- ],
- "skipTemplateCodegen": false
- }
|