Files
commerce/framework/woocommerce/codegen.json
2021-09-18 19:32:40 +03:00

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"]
}
}