1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  | { 
 |    "compilerOptions": { 
 |      "module": "esnext", 
 |      "moduleResolution": "node", 
 |      "target": "esnext", 
 |      "allowJs": true, 
 |      "skipLibCheck": true, 
 |      "strict": true, 
 |    
 |      "sourceMap": true, 
 |      "baseUrl": ".", 
 |      "paths": { 
 |        "@/*": ["./src/*"] 
 |      }, 
 |      "lib": ["esnext", "dom"], 
 |      "types": ["@dcloudio/types", "wot-design-uni/global"] 
 |    }, 
 |    "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], 
 |    "exclude": ["node_modules", "dist"] 
 |  } 
 |  
  |