Skip to content

Instantly share code, notes, and snippets.

@michelalbers
Created September 9, 2018 19:02
Show Gist options
  • Save michelalbers/e32707147176ee4c3beffe1fda1d99e6 to your computer and use it in GitHub Desktop.
Save michelalbers/e32707147176ee4c3beffe1fda1d99e6 to your computer and use it in GitHub Desktop.
Testing a GraphQL Next.js App with TypeScript and Apollo
{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
"jsx": "react",
"sourceMap": false,
"experimentalDecorators": true,
"noImplicitUseStrict": true,
"removeComments": false,
"moduleResolution": "node",
"lib": [
"es2017",
"dom"
],
"typeRoots": [
"node_modules/@types",
"src/@types"
]
},
"exclude": [
"node_modules",
"out",
".next"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment