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