forked from urql-graphql/urql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 868 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
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"urql": ["packages/react-urql/src"],
"*-urql": ["packages/*-urql/src"],
"@urql/exchange-*": ["exchanges/*/src"],
"@urql/core/*": ["packages/core/src/*"],
"@urql/*": ["packages/*-urql/src", "packages/*/src"]
},
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"noEmit": true,
"lib": ["dom", "esnext"],
"jsx": "preserve",
"module": "es2015",
"moduleResolution": "node",
"target": "esnext",
"strict": true,
"noImplicitAny": false,
"noUnusedParameters": true,
"skipLibCheck": true
},
"include": ["packages", "exchanges"],
"exclude": [
"scripts",
"packages/*/examples",
"packages/*/dist",
"exchanges/*/examples",
"exchanges/*/dist",
"node_modules"
]
}