rsnext/test/integration/relay-graphql-swc-multi-project/relay.config.js
JJ Kasper 3e60c232a8
Relay Support in Rust Compiler (#33702)
Reverts vercel/next.js#33699

This re-opens the support for relay in swc, although we need to narrow in the causes for the build failures in https://github.com/vercel/next.js/runs/4950448889?check_suite_focus=true

Co-authored-by: Andrey Lunyov <102968+alunyov@users.noreply.github.com>
2022-02-01 18:18:55 +00:00

19 lines
402 B
JavaScript

module.exports = {
root: './',
sources: {
'project-a/pages': 'project-a',
'project-b/pages': 'project-b',
},
projects: {
'project-a': {
schema: 'schema.graphql',
language: 'typescript',
output: 'project-a/__generated__',
},
'project-b': {
schema: 'schema.graphql',
language: 'typescript',
output: 'project-b/__generated__',
},
},
}