mirror of
https://github.com/vercel/commerce.git
synced 2025-06-18 13:11:23 +00:00
36 lines
584 B
JSON
36 lines
584 B
JSON
{
|
|
"schema": {
|
|
"http://localhost:3001/shop-api": {}
|
|
},
|
|
"documents": [
|
|
{
|
|
"./framework/vendure/**/*.{ts,tsx}": {
|
|
"noRequire": true
|
|
}
|
|
}
|
|
],
|
|
"generates": {
|
|
"./framework/vendure/schema.d.ts": {
|
|
"plugins": [
|
|
"typescript",
|
|
"typescript-operations"
|
|
],
|
|
"config": {
|
|
"scalars": {
|
|
"ID": "number"
|
|
}
|
|
}
|
|
},
|
|
"./framework/vendure/schema.graphql": {
|
|
"plugins": [
|
|
"schema-ast"
|
|
]
|
|
}
|
|
},
|
|
"hooks": {
|
|
"afterAllFileWrite": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|