Skip to content

Instantly share code, notes, and snippets.

@olegchursin
Last active November 27, 2019 06:15
Show Gist options
  • Save olegchursin/bfd9598be3218904c475054025d50a93 to your computer and use it in GitHub Desktop.
Save olegchursin/bfd9598be3218904c475054025d50a93 to your computer and use it in GitHub Desktop.
GatsbyJS .tsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
"jsx": "preserve",
"lib": ["dom", "esnext"],
"strict": true,
"noEmit": true,
"isolatedModules": true,
"esModuleInterop": true,
"noUnusedLocals": false,
"allowJs": true
},
"exclude": ["node_modules", "public", ".cache"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment