mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 17:12:53 +03:00
21 lines
445 B
JavaScript
21 lines
445 B
JavaScript
module.exports = {
|
|
schema: process.env.REACT_APP_API_URL,
|
|
documents: ['./src/**/*.tsx', './src/**/*.ts'],
|
|
overwrite: true,
|
|
generates: {
|
|
'./src/generated/graphql.tsx': {
|
|
plugins: [
|
|
'typescript',
|
|
'typescript-operations',
|
|
'typescript-react-apollo',
|
|
],
|
|
config: {
|
|
skipTypename: false,
|
|
withHooks: true,
|
|
withHOC: false,
|
|
withComponent: false,
|
|
},
|
|
},
|
|
},
|
|
};
|