-
Notifications
You must be signed in to change notification settings - Fork 56
/
tsconfig.json
43 lines (43 loc) · 1.44 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
{
"compilerOptions": {
// 编译目标平台
"target": "es6",
// 输出目录
"outDir": "./dist/",
// 添加需要的解析的语法,否则TS会检测出错。
"lib": ["es2015", "es2016", "dom"],
// 模块的解析
"moduleResolution": "node",
// 指定生成哪个模块系统代码
"module": "es2015",
// 在表达式和声明上有隐含的any类型时报错
"noImplicitAny": false,
// 把 ts 文件编译成 js 文件的时候,同时生成对应的 map 文件
"sourceMap": true,
// 允许编译javascript文件
"allowJs": true,
// 指定基础目录
"baseUrl": "./",
// 启用装饰器
"experimentalDecorators": true,
// 允许从没有设置默认导出的模块中默认导入。这并不影响代码的输出,仅为了类型检查。
"allowSyntheticDefaultImports": true,
// 移除注释
"removeComments": true,
"pretty": true,
// 函数返回值
"noImplicitReturns": true,
// 要包含的类型声明文件名列表
"types": ["node", "mapbox-gl", "geojson", "leaflet", "three"],
// 是相对于"baseUrl"进行解析
"paths": {
"vue": ["node_modules/vue/types"],
// 解决ts文件中的别名问题
"vue-iclient/*": ["./*"],
"*.ts": ["*"]
}
},
"include": ["src/**/*", "demo/**/*"],
"exclude": ["node_modules", "dist", "lib"],
"files": ["src/sfc.d.ts", "src/image.d.ts", "src/vue-options.d.ts"]
}