-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
61 lines (61 loc) · 2.29 KB
/
tsconfig.json
File metadata and controls
61 lines (61 loc) · 2.29 KB
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
{
"extends": "@becklyn/tsconfig/nextjs.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
},
"plugins": [
{
"name": "next"
},
{
"name": "gql.tada/ts-plugin",
"schemas": [
{
"name": "streams",
"schema": {
"url": "https://demo.demo.freym.io/streams/management/graphql",
"headers": {
"Accept": "application/graphql-response+json"
}
},
"tadaOutputLocation": "./lib/api/streams-env.d.ts"
},
{
"name": "projections",
"schema": {
"url": "https://demo.demo.freym.io/projections/delivery/graphql",
"headers": {
"Accept": "application/graphql-response+json"
}
},
"tadaOutputLocation": "./lib/api/projections-env.d.ts"
},
{
"name": "crud",
"schema": {
"url": "https://demo.demo.freym.io/crud/delivery/graphql",
"headers": {
"Accept": "application/graphql-response+json"
}
},
"tadaOutputLocation": "./lib/api/crud-env.d.ts"
},
{
"name": "auth",
"schema": {
"url": "https://demo.demo.freym.io/auth/management/graphql",
"headers": {
"Accept": "application/graphql-response+json"
}
},
"tadaOutputLocation": "./lib/api/auth-env.d.ts"
}
]
}
]
},
"include": ["next-env.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}