mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-07 15:09:48 -06:00
Co-authored-by: ElevateBart <ledouxb@gmail.com> Co-authored-by: Barthélémy Ledoux <bart@cypress.io>
15 lines
443 B
JavaScript
15 lines
443 B
JavaScript
const path = require('path')
|
|
|
|
// For use with Apollo Extension for VSCode:
|
|
// https://www.apollographql.com/docs/devtools/editor-plugins/
|
|
module.exports = {
|
|
client: {
|
|
service: {
|
|
name: 'cypress-io',
|
|
localSchemaFile: path.join(__dirname, 'packages/graphql/schemas/schema.graphql'),
|
|
},
|
|
tagName: 'gql',
|
|
includes: [path.join(__dirname, 'packages/{launchpad,app,frontend-shared}/src/**/*.{vue,ts,js,tsx,jsx}')],
|
|
},
|
|
}
|