-
-
Notifications
You must be signed in to change notification settings - Fork 463
Expand file tree
/
Copy pathtsconfig.json
More file actions
51 lines (51 loc) · 1.36 KB
/
tsconfig.json
File metadata and controls
51 lines (51 loc) · 1.36 KB
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
48
49
50
51
{
"exclude": ["node_modules", "react-google-maps-api-gatsby-example"],
"types": [
"googlemaps",
"invariant",
"react-dom",
"estree"
],
"compilerOptions": {
"module": "ES2022",
"moduleResolution": "node",
"target": "ES2022",
"jsx": "react-jsx",
"lib": ["dom", "ES2022"],
"rootDir": "/",
"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,
"allowImportingTsExtensions": 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,
"sourceMap": true,
"inlineSources": true,
"isolatedModules": true,
"moduleDetection": "force",
"noPropertyAccessFromIndexSignature": true,
"allowArbitraryExtensions": true,
"verbatimModuleSyntax": true
}
}