-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (31 loc) · 891 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
{
"extends": "./tsconfig.path.json",
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["dom", "es6", "dom.iterable", "scripthost", "ESNext"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"types": ["jest"],
"baseUrl": ".",
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}