-
Notifications
You must be signed in to change notification settings - Fork 319
/
tsconfig.json
41 lines (41 loc) · 1.67 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
{
"compilerOptions": {
"allowUnreachableCode": true, // 不报告执行不到的代码错误。
"allowUnusedLabels": false, // 不报告未使用的标签错误
"alwaysStrict": false, // 以严格模式解析并为每个源文件生成 "use strict"语句
"baseUrl": ".", // 工作根目录,会影响vscode import生成的路径
"preserveConstEnums": true, // 使用 const enum 产生内联成员
"experimentalDecorators": true, // 启用实验性的ES装饰器
"moduleResolution": "Node", // 引入package.json不会报红
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"pretty": true,
"noImplicitAny": false, // 是否默认禁用 any
"removeComments": true, // 是否移除注释
"forceConsistentCasingInFileNames": true, //禁止对同一个文件的不一致的引用。
"paths": {
// 指定模块的路径,和baseUrl有关联
"@zyf2e/monitor-*": ["packages/*/src/"],
"@/test/*": ["test/*"]
},
"types": ["node", "jest", "wechat-miniprogram", "puppeteer"],
"target": "ES5", // 编译成什么版本
"module": "CommonJS", // 当前代码语法
// "outDir": "./dist/", // 输出目录
"declaration": true, // 是否自动创建类型声明文件
// "declarationMap": true,
// "declarationDir": "./dist/packages/", // 类型声明文件的输出目录
"typeRoots": [
// 指定某个文件夹的声明文件
"node_modules/@types"
],
"allowJs": false, // 不允许编译javascript文件。
"lib": [
// 编译过程中需要引入的库文件的列表
"es6",
"dom"
]
},
"include": ["packages", "mito", "test", "examples"]
}