mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
26 lines
461 B
JSON
26 lines
461 B
JSON
{
|
|
"overwrite": true,
|
|
"schema": "http://localhost:3000/graphql",
|
|
"documents": [
|
|
{
|
|
"./src/api/**/*.ts": {
|
|
"noRequire": true
|
|
}
|
|
}
|
|
],
|
|
"generates": {
|
|
"./schema.d.ts": {
|
|
"plugins": ["typescript", "typescript-operations"],
|
|
"config": {
|
|
"avoidOptionals": true
|
|
}
|
|
},
|
|
"./schema.graphql": {
|
|
"plugins": ["schema-ast"]
|
|
}
|
|
},
|
|
"hooks": {
|
|
"afterAllFileWrite": ["prettier --write"]
|
|
}
|
|
}
|