1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "compilerOptions": {
- "baseUrl": "./",
- "target": "esnext",
- "useDefineForClassFields": true,
- "module": "esnext",
- "moduleResolution": "node",
- "strict": true,
- "jsx": "preserve",
- "sourceMap": true,
- "resolveJsonModule": true,
- "isolatedModules": true,
- "esModuleInterop": true,
- "allowJs": true,
- "skipLibCheck": true /* Skip type checking all .d.ts files. */,
- "allowSyntheticDefaultImports": true /* 允许默认导入 */,
- "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
- "lib": [
- "esnext",
- "dom"
- ],
- "types": [
- "element-plus/golbal"
- ],
- "paths": {
- "@/*": [
- "./src/*"
- ]
- }
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "types/auto-imports.d.ts"
- ],
- "exclude": ["node_modules", "dist", "**/*.js"],
- "references": [
- {
- "path": "./tsconfig.node.json"
- }
- ]
- }
|