-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
61 lines (61 loc) · 1.45 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"workers": 4,
"async": false,
"useTypescriptIncrementalApi": true,
"watch": [
"src"
],
"isolatedModules": false,
"compilerOptions": {
"outDir": "./dist/es",
"allowJs": false,
"baseUrl": ".",
"paths": {
"qnn-table": [
"/dist/es"
],
"qnn-form": [
"../../../../node_modules/qnn-form-dev"
]
},
"allowSyntheticDefaultImports": true,
"target": "esnext", // 编译目标
"module": "esnext",
"noImplicitAny": true,
"preserveConstEnums": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": false,
"declaration": true,
"removeComments": false,
"emitDeclarationOnly": true,
"declarationDir": "dist/es",
"incremental": true,
"watch": true,
"jsx": "preserve",
"typeRoots": [
"node_modules/@types"
],
"types": [
"node"
],
"lib": [
"dom",
"es2017",
"ES2015"
],
},
"exclude": [
"node_modules",
"lib",
"es",
"./dist/**/*", // 不排除将会收到重新文件的报错
"./emitDeclaration.js",
"./src-backup/**",
],
"toc":[
"回调形参",
"表格组件实例"
]
}