-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
42 lines (39 loc) · 882 Bytes
/
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
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"lib": [
"es6",
"es2016",
"es2017",
"es2021",
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"jsx": "preserve",
"moduleResolution": "node",
"noEmit": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"typeRoots": ["./node_modules/@types", "./node_modules/react-bootstrap-mobile/src/types"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"incremental": true,
"strict": false,
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"node_modules/react-bootstrap-mobile/src",
"node_modules/echarts-wordcloud"
],
"exclude": [
// "node_modules"
]
}