mirror of
https://github.com/vercel/commerce.git
synced 2025-05-21 17:06:58 +00:00
29 lines
482 B
JSON
29 lines
482 B
JSON
{
|
|
"schema": {
|
|
"http://localhost:3001/shop-api": {}
|
|
},
|
|
"documents": [
|
|
{
|
|
"./src/**/*.{ts,tsx}": {
|
|
"noRequire": true
|
|
}
|
|
}
|
|
],
|
|
"generates": {
|
|
"./schema.d.ts": {
|
|
"plugins": ["typescript", "typescript-operations"],
|
|
"config": {
|
|
"scalars": {
|
|
"ID": "string"
|
|
}
|
|
}
|
|
},
|
|
"./schema.graphql": {
|
|
"plugins": ["schema-ast"]
|
|
}
|
|
},
|
|
"hooks": {
|
|
"afterAllFileWrite": ["prettier --write"]
|
|
}
|
|
}
|