-
-
Notifications
You must be signed in to change notification settings - Fork 439
/
tsconfig.json
41 lines (41 loc) · 1.15 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
39
40
41
{
"baseUrl": ".",
"exclude": ["node_modules"],
"types": ["googlemaps", "jest", "invariant", "react-dom", "eslint", "estree", "webpack"],
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node",
"target": "es2015",
"jsx": "react-jsx",
"lib": ["dom"],
"rootDir": "packages",
"declaration": true,
"declarationDir": "dist",
"noEmit": true,
"strict": true,
"allowJs": false,
"checkJs": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": false,
"resolveJsonModule": true,
"experimentalDecorators": true,
"strictNullChecks": true,
"noUncheckedIndexedAccess": true,
"alwaysStrict": true,
"noImplicitAny": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"pretty": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"importsNotUsedAsValues": "error",
"ignoreDeprecations": "5.0"
}
}