1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
| {
| "compilerOptions": {
| "module": "ESNext",
| "moduleResolution": "Node",
| "useDefineForClassFields": true,
| "jsx": "preserve",
| "jsxImportSource": "vue",
|
| "noImplicitThis": true,
| "isolatedModules": true,
|
| "target": "ESNext",
|
| "esModuleInterop": true,
| "forceConsistentCasingInFileNames": true,
| "skipLibCheck": true,
|
| "strict": false,
| "baseUrl": ".",
| "allowJs": true,
| "importsNotUsedAsValues": "preserve",
| "preserveValueImports": false,
| "resolveJsonModule": true,
| "lib": ["dom", "esnext"],
| "incremental": true,
| "paths": {
| "@/*": ["src/*"],
| "@build/*": ["build/*"],
| "@config/*": ["config/*"],
| "@mock/*": ["mock/*"]
| // "@bole-core/*": ["packages/*"]
| },
| "types": [
| "node",
| "vite/client",
| "vite-svg-loader",
| "element-plus/global",
| "@bole-core/components/global"
| ]
| // "typeRoots": ["./node_modules/@types/", "./types"]
| },
| "include": [
| "src/**/*.ts",
| "build/**/*.ts",
| "src/**/*.d.ts",
| "src/**/*.tsx",
| "src/**/*.vue",
| "types/**/*.d.ts",
| "vite.config.ts",
| "auto-imports.d.ts",
| "components.d.ts",
| "lib/vuedraggable/dist/vuedraggable.umd.js"
| ],
| "exclude": ["node_modules", "dist"]
| }
|
|