mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-02 04:50:06 -05:00
15 lines
448 B
JavaScript
15 lines
448 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/data-context/schemas/schema.graphql'),
|
|
},
|
|
tagName: 'gql',
|
|
includes: [path.join(__dirname, 'packages/{launchpad,app,frontend-shared}/src/**/*.{vue,ts,js,tsx,jsx}')],
|
|
},
|
|
}
|