forked from APIs-guru/graphql-voyager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 740 Bytes
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 740 Bytes
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
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "es2015",
"moduleResolution": "node",
"target": "es2019",
"noImplicitAny": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmit": true,
"pretty": true,
"lib": ["es2019", "dom", "dom.iterable"],
"jsx": "react-jsx"
},
"compileOnSave": false,
"exclude": [
"node_modules",
".tmp",
"dist",
"demo-dist",
"**/**/voyager.worker.js"
],
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"./manual-types.d.ts",
"demo/**/*.tsx",
"tests/**/*.ts",
"playwright.config.ts"
]
}