-
Notifications
You must be signed in to change notification settings - Fork 17
/
tsconfig.json
40 lines (39 loc) · 1.2 KB
/
tsconfig.json
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
{
"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,
"typeRoots": [
"./node_modules/miniprogram-api-typings",
"./node_modules/@types",
"./packages/**/src/@typings",
"./packages/**/*/typing.d.ts",
"./packages/runtime/core/node_modules/@types"
],
"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"]
}