-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathtsconfig.json
More file actions
45 lines (45 loc) · 1.26 KB
/
tsconfig.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"isolatedModules": true,
"resolveJsonModule": true,
"moduleResolution": "bundler",
"module": "ESNext",
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"baseUrl": ".",
"jsx": "react-jsx",
"jsxImportSource": "react",
"allowImportingTsExtensions": true,
"noEmit": true,
"skipLibCheck": true,
"strictNullChecks": true,
"types": ["react/jsx-runtime"],
"paths": {
"@/*": ["./src/*"]
},
"plugins": [
{
"name": "gql.tada/ts-plugin",
"schemas": [
{
"name": "checkout-api",
"schema": "./src/lib/godaddy/schema.graphql",
"tadaOutputLocation": "./src/lib/godaddy/checkout-env.ts"
},
{
"name": "catalog-api",
"schema": "./src/lib/godaddy/catalog-storefront.graphql",
"tadaOutputLocation": "./src/lib/godaddy/catalog-storefront-env.ts"
},
{
"name": "orders-api",
"schema": "./src/lib/godaddy/orders-storefront.graphql",
"tadaOutputLocation": "./src/lib/godaddy/orders-storefront-env.ts"
}
]
}
]
},
"exclude": ["node_modules"]
}