forked from NervJS/taro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
41 lines (41 loc) · 1008 Bytes
/
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
41
{
"compilerOptions": {
"target": "ES2017",
"module": "ESNext",
"removeComments": false,
"preserveConstEnums": false,
"moduleResolution": "node",
"experimentalDecorators": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"outDir": "lib",
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"sourceMap": true,
"baseUrl": ".",
"rootDir": ".",
"paths": {
"@tarojs/shared": ["packages/shared/src"],
"@tarojs/taro": ["packages/taro/types/index.d.ts"],
"@tarojs/runtime": ["packages/taro-runtime/src"],
"@dom": ["packages/taro-runtime/src/dom"],
"@tarojs/components": ["packages/taro-components/types"]
}
},
"include": [
"packages/global.d.ts",
"packages/*/src"
],
"exclude": [
"__tests__",
"node_modules",
"dist",
"tests",
"jest",
"**/*.test.ts",
"**/*.spec.ts"
],
"compileOnSave": false
}