-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 1.02 KB
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 1.02 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
{
"compilerOptions": {
"skipLibCheck": true,
"useUnknownInCatchVariables": false,
"strictNullChecks": true,
"noImplicitAny": true,
"module": "CommonJS",
"target": "ES5",
"allowJs": true,
"experimentalDecorators": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"alwaysStrict": true,
"inlineSourceMap": true,
"inlineSources": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"removeComments": true,
"pretty": true,
"strictPropertyInitialization": false,
"declaration": true,
"types": ["miniprogram-api-typings", "jest", "node", "./node_modules/@types/pumpify", "./node_modules/@types/through2"],
"lib": ["es5", "es2016", "scripthost"],
"moduleResolution": "node",
"baseUrl": "./packages/**/src",
"paths": {},
"esModuleInterop": true
},
"include": ["./packages/**/src/**/*.ts"],
"exclude": ["node_modules", "miniprogram_dist", "dist", "**/*.spec.ts", "typings"]
}