mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
29 lines
554 B
JSON
29 lines
554 B
JSON
{
|
|
"schema": {
|
|
"${NEXT_PUBLIC_WOOCOMMERCE_SHOP_API_URL}": {}
|
|
},
|
|
"documents": [
|
|
{
|
|
"./framework/woocommerce/wp/**/*.{ts,tsx}": {
|
|
"noRequire": true
|
|
}
|
|
}
|
|
],
|
|
"generates": {
|
|
"./framework/woocommerce/schema.ts": {
|
|
"plugins": ["typescript", "typescript-operations"],
|
|
"config": {
|
|
"scalars": {
|
|
"ID": "string"
|
|
}
|
|
}
|
|
},
|
|
"./framework/woocommerce/schema.graphql": {
|
|
"plugins": ["schema-ast"]
|
|
}
|
|
},
|
|
"hooks": {
|
|
"afterAllFileWrite": ["prettier --write"]
|
|
}
|
|
}
|