forked from graphql/graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
43 lines (42 loc) · 1.23 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
42
43
{
"include": [
"src/**/*",
"integrationTests/*",
"resources/*",
"benchmark/benchmark.ts"
],
"compilerOptions": {
"lib": [
"es2022",
"dom" // Workaround for missing web-compatible globals in `@types/node`
],
"target": "es2021",
"sourceMap": true,
"inlineSources": true,
"module": "es2022",
"moduleResolution": "node",
"noEmit": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
// Type Checking
// https://www.typescriptlang.org/tsconfig#Type_Checking_6248
"strict": true,
"useUnknownInCatchVariables": false, // FIXME part of 'strict' but is temporary disabled
// All checks that are not part of "strict"
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": false, // TODO consider
"noImplicitOverride": true,
"noImplicitReturns": false, // TODO consider
"noPropertyAccessFromIndexSignature": false, // TODO consider
"noUncheckedIndexedAccess": false, // FIXME
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true
},
"ts-node": {
"esm": true
}
}