-
Notifications
You must be signed in to change notification settings - Fork 24
/
tsconfig.json
33 lines (33 loc) · 1.01 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
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"esModuleInterop": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"jsx": "react",
"lib": ["ESNext"],
"module": "ESNext",
"forceConsistentCasingInFileNames": true,
"moduleResolution": "Node",
"noFallthroughCasesInSwitch": true,
// Changed `noImplicitReturns` to false so that we don't have to return in else statements if there is just a if statement
//https://typescript.tv/errors/#ts7030
"noImplicitReturns": false,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"noEmitOnError": true,
"outDir": "./lib",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ESNext",
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": true
},
"exclude": ["example/node_modules/**", "node_modules/**", "**/__tests__/*"],
"include": ["src"]
}