-
-
Notifications
You must be signed in to change notification settings - Fork 571
/
tsconfig.json
65 lines (60 loc) · 2.08 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"extends": "@tsconfig/node16/tsconfig.json",
"ts-node": {
"experimentalResolver": true
},
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true,
"allowJs": false,
"moduleResolution": "NodeNext",
"module": "NodeNext",
"target": "ES2022",
"lib": ["ES2022"],
// This has runtime performance overhead! Specifically it means a lot of
// time is spent in 'instance_members_initializer' in V8. Disable.
"useDefineForClassFields": false,
"stripInternal": true,
"sourceMap": true,
"pretty": true,
"importHelpers": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"preserveWatchOutput": true,
// We should remove this later
"useUnknownInCatchVariables": false,
// Use eslint for these "lint"-y checks
"noUnusedParameters": false,
"noUnusedLocals": false
},
"exclude": ["node_modules", "dist", ".yarn"],
"include": [],
"references": [
{ "path": "utils/eslint-plugin-graphile-export" },
{ "path": "utils/jest-serializer-graphql-schema" },
{ "path": "utils/jest-serializer-simple" },
{ "path": "utils/lds" },
{ "path": "utils/lru" },
{ "path": "utils/pg-sql2" },
{ "path": "utils/tamedevil" },
{ "path": "graphile-build/graphile-build" },
{ "path": "graphile-build/graphile-build-pg" },
{ "path": "graphile-build/graphile-simplify-inflection" },
{ "path": "grafast/grafast" },
{ "path": "utils/graphile-export" },
{ "path": "utils/graphile-config" },
{ "path": "graphile-build/graphile-utils/tsconfig.build.json" },
{ "path": "grafast/dataplan-pg" },
{ "path": "utils/pg-introspection" },
{ "path": "utils/graphile" },
{ "path": "grafast/ruru-components" },
{ "path": "grafast/ruru/tsconfig.build.json" },
{ "path": "grafast/grafserv-persisted" },
{ "path": "postgraphile/postgraphile/tsconfig.build.json" },
{ "path": "postgraphile/pgl/tsconfig.build.json" },
{ "path": "grafast/bench/tsconfig.build.json" }
]
}