-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 1.33 KB
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 1.33 KB
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
{
"compilerOptions": {
"noImplicitAny": false, // 不需要显式地声明变量的类型any
"target": "es5", // 编译后的目标javascript版本,ES5, ES6/ES2015, ES2016, ES2017, ES2018, ES2019, ES2020, ESNext
"lib": [
"dom", // document.getElementById("root")
"dom.iterable",
"esnext"
],
"allowJs": true, // 允许混合编译JavaScript文件
"skipLibCheck": true,
"esModuleInterop": true, // 允许我们使用commonjs的方式import默认文件, import React from 'react'
// "esModuleInterop": false, import * as React from 'react'
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext", // 配置的是我们代码的模块系统, Node.js的CommonJS、ES6标准的esnext、requirejs的AMD
"moduleResolution": "node", // 决定了我们编译器的工作方式,"node" and "classic"
"resolveJsonModule": true,
"isolatedModules": true, // 编译器会将每个文件作为单独的模块来使用
"noEmit": true, // 表示当发生错误的时候,编译器不要生成 JavaScript 代码
"jsx": "react-jsx", // 允许编译器支持编译react代码,
"plugins": [
{
"name": "typescript-plugin-css-modules"
}
]
},
"include": ["src"]
}