commerce/packages/vendure/codegen.json
2022-01-16 21:30:52 -05:00

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