forked from graphile/federation
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
35 lines (29 loc) · 807 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
33
34
35
{
"compilerOptions": {
"preserveWatchOutput": true,
"rootDir": "src",
"outDir": "dist",
"declaration": true,
"declarationDir": "./dist",
"allowJs": false,
"sourceMap": true,
"inlineSourceMap": false,
"target": "es2017",
"module": "commonjs",
"lib": ["es2017", "esnext.asynciterable"],
"esModuleInterop": true,
"pretty": true,
"removeComments": false,
"preserveConstEnums": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"importHelpers": true,
"strict": true,
"suppressImplicitAnyIndexErrors": true,
"noFallthroughCasesInSwitch": false,
"noUnusedParameters": false,
"noUnusedLocals": false
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "__tests__", "**/__tests__"]
}