Created
September 9, 2018 19:02
-
-
Save michelalbers/e32707147176ee4c3beffe1fda1d99e6 to your computer and use it in GitHub Desktop.
Testing a GraphQL Next.js App with TypeScript and Apollo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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