Skip to content

Instantly share code, notes, and snippets.

@Joe1220
Created June 7, 2020 11:23
Show Gist options
  • Select an option

  • Save Joe1220/aa21c7cd1262e3982f707f2b42c8a849 to your computer and use it in GitHub Desktop.

Select an option

Save Joe1220/aa21c7cd1262e3982f707f2b42c8a849 to your computer and use it in GitHub Desktop.
gql-yoga-test tsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"lib": ["es6", "dom", "esnext.asynciterable"],
"sourceMap": true,
"allowJs": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"outDir": "./build"
},
"exclude": ["node_modules", "build"],
"include": ["**/*.ts", "**/*.tsx", "src/**/*.ts"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment