-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
47 lines (47 loc) · 991 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
43
44
45
46
47
{
"display": "Node 12",
"compileOnSave": true,
"noImplicitAny": false,
"compilerOptions": {
"baseUrl": ".",
"rootDir": "./src",
"outDir": "./dist",
"lib": [
"DOM",
"es2019",
"es2020.promise",
"es2020.bigint",
"es2020.string"
],
"module": "esnext",
"target": "es6",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"watch": true,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitThis": false,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"allowJs": false,
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"src/**/*",
"node_modules/@types"
],
"exclude": [
"node_modules",
"src/server",
"build"
],
}