-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
38 lines (38 loc) · 1.14 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
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"./*"
]
},
"target": "es5",
"module": "esnext",
"strict": true,
"allowJs": true, // 允许编译js文件
"jsx": "preserve", // 在 .tsx文件里支持JSX
"noEmit": true, // 不输出文件
"lib": [
"dom",
"dom.iterable",
"esnext"
], // TS需要引用的库,即声明文件
"esModuleInterop": true, // 允许export=导出,由import from导入
"moduleResolution": "node", // 模块解析策略,ts默认用node的解析策略,即相对的方式导入
"allowSyntheticDefaultImports": true, // 允许从没有设置默认导出的模块中默认导入
"isolatedModules": true, // 将每个文件作为单独的模块
"resolveJsonModule": true, // 允许把json文件当做模块进行解析
"skipLibCheck": true, // 跳过所有声明文件的类型检查
"forceConsistentCasingInFileNames": true // 不允许对同一文件使用不一致大小写的引用
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules",
".next",
"dist"
]
}