-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
47 lines (45 loc) · 1.64 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
{
"compilerOptions": {
"incremental": true,
"target": "esnext", // 指定ECMAScript目标版本
"useDefineForClassFields": true,
"lib": ["dom", "dom.iterable", "esnext"], // TS需要引用的库,即声明文件。新的包含了旧的,不需要每个都重复引入。
"allowJs": false,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"composite": true,
"module": "esnext", // 指定生成哪个模块系统代码
"moduleResolution": "node", // 模块解析策略,ts默认用node的解析策略,即相对的方式导入
"resolveJsonModule": true, // 直接加载json文件
"esModuleInterop": true, // 可以直接使用 import react from React, 否则要 import * as react from React
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx", // jsx 支持 react 风格
"noUnusedLocals": false, // 检查只声明、未使用的局部变量(只提示不报错)
"noUnusedParameters": false, // 检查未使用的函数参数(只提示不报错)
"noImplicitReturns": true, // 每个分支都会有返回值
"types": ["vite/client"], // 静态资源导入支持
// 指定根路径
"baseUrl": ".",
/* 配置路径别名 */
"paths": {
"lib/*": ["lib/*"],
"ui/*": ["lib/ui/*"]
}
},
"include": [
"rollup.config.mjs",
"vite.config.ts",
".eslintrc.cjs",
".postcssrc.cjs",
".commitlintrc.cjs",
"tailwind.config.cjs",
"**/*.ts",
"**/*.tsx",
"**/*.json",
"**/*.html"
],
"exclude": ["node_modules"]
}