-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 1.18 KB
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 1.18 KB
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
{
"extends": "@vue/tsconfig/tsconfig.json",
"compilerOptions": {
"verbatimModuleSyntax": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"uview-pro": ["./src/uni_modules/uview-pro"],
"uview-pro/*": ["./src/uni_modules/uview-pro/*"]
},
"lib": ["esnext", "dom"],
"types": ["@dcloudio/types"],
"typeRoots": ["./types", "./src/uni_modules/uview-pro/types", "./node_modules/@types"],
"skipLibCheck": true,
"allowJs": true,
"jsx": "preserve",
"strict": false,
"noImplicitAny": false,
"strictNullChecks": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,
"exactOptionalPropertyTypes": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noUncheckedIndexedAccess": false
},
"vueCompilerOptions": {
"strictTemplates": false,
"target": 3
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "types/**/*.d.ts", "*.d.ts"],
"exclude": ["src/**/*.js", "src/uni_modules/**/*.js", "node_modules"]
}