-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
41 lines (41 loc) · 1.34 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,
"strictNullChecks": true,
// 严格模式, 强烈建议开启
"strict": true,
// 支持别名导入:
// import * as React from "react"
"esModuleInterop": true,
// 目标js的版本
"target": "es5",
// 目标代码的模块结构版本
"module": "ESNext",
// 在表达式和声明上有隐含的 any类型时报错。
"noImplicitAny": false,
// "__extends"等函数
// 将以"import {__extends} from 'tslib'的形式导入
"importHelpers": true,
// 删除注释
"removeComments": true,
// 保留 const和 enum声明
"preserveConstEnums": false,
// 生成sourceMap
"sourceMap": true,
// 目标文件所在路径
"outDir": "./lib",
// 编译过程中需要引入的库文件的列表
"lib": ["dom","es6"],
// 额外支持解构/forof等功能
"downlevelIteration": true,
// 是否生成声明文件
"declaration": true,
// 此处设置为node,才能解析import xx from 'xx'
"moduleResolution": "node",
// 从此处开始编译
"rootDir": "./src"
},
// 入口文件
"include": ["src"]
}