-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
94 lines (91 loc) · 2.29 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"compilerOptions": {
"target": "esnext", //指定ECMAScript目标版本。许可值为“es3”、“es5”、“es6”、“es2015”、“es2016”、“es2017”、“es2018”或“esnext”。
"module": "esnext",//指定模块代码生成:“none”、“commonjs”、“amd”、“system”、“umd”、“es2015”或“esnext”
"removeComments": false,
"declaration": true,
"outDir": "./lib",
"declarationDir": "./lib",
"baseUrl": "./",
"jsx": "react",
"experimentalDecorators": true,
"downlevelIteration": true,
"allowJs": false,
"skipLibCheck": true,
"typeRoots": [
"node_modules/@types",
"global.d.ts",
"typings"
],
"lib": [
"dom",
"es2015"
],
"sourceMap": false,
"noImplicitAny": false
},
"files": [
"./src/lib/index.ts"
],
"include": [
"src/lib/*.ts"
],
"exclude": [
"node_modules"
]
}
//{
// "compilerOptions": {
// // 编译输出目标 ES 版本
// "target": "esnext",
// // 采用的模块系统
// "module": "esnext",
// // 以严格模式解析
// "strict": true,
// // 从 tslib 导入外部帮助库: 比如 __extends __rest 等
// "importHelpers": true,
// // 如何处理模块
// "moduleResolution": "node",
// // 启用装饰器
// "experimentalDecorators": true,
// // 启用设计类型元数据(用于反射)
// "emitDecoratorMetadata": true,
// // 允许编译javascript文件
// "allowJs": true,
// // 允许从没有设置默认导出的模块中默认导入
// "allowSyntheticDefaultImports": true,
// // 是否包含可以用于 debug 的 sourceMap
// "sourceMap": true,
// // 在表达式和声明上有隐含的 any 类型时报错
// "noImplicitAny": false,
// // 移除注释
// "removeComments": true,
// "esModuleInterop": true,
// "jsx": "preserve",
// "baseUrl": ".",
// "types": [
// "webpack-env"
// ],
// "paths": {
// "@/*": [
// "src/*"
// ]
// },
// "lib": [
// "esnext",
// "dom",
// "dom.iterable",
// "scripthost"
// ]
// },
// "include": [
// "src/**/*.ts",
// "src/**/*.tsx",
// "src/**/*.vue",
// "tests/**/*.ts",
// "tests/**/*.tsx"
// ],
// "exclude": [
// "node_modules"
// ]
//}