12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "compilerOptions": {
- "incremental": true,
- "target": "es5",
- "module": "esnext",
- "strict": true,
- "jsx": "preserve",
- "importHelpers": true,
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "downlevelIteration": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowJs": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "useDefineForClassFields": true,
- "sourceMap": true,
- "baseUrl": ".",
- "outDir": "./dist",
- "types": ["element-plus/global", "webpack-env", "node"],
- "paths": {
- "~/*": ["*"],
- "@/*": ["./src/*"],
- "/#/*": ["./types/*"],
- "@vab/*": ["./library/*"],
- "@gp": ["./library/plugins/vab"]
- },
- "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "mock/**/*.ts",
- "types/**/*.d.ts",
- "library/**/*.ts",
- "library/**/*.tsx",
- "library/**/*.vue",
- "test/**/*.ts"
- ],
- "exclude": ["node_modules", "library/build/chainWebpack"]
- }
|