Skip to content

Instantly share code, notes, and snippets.

@glaucofox
Created January 16, 2021 23:51
Show Gist options
  • Select an option

  • Save glaucofox/ad577cd70f942303734a1d48725274c1 to your computer and use it in GitHub Desktop.

Select an option

Save glaucofox/ad577cd70f942303734a1d48725274c1 to your computer and use it in GitHub Desktop.
TypeScript Config JSON file
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"rootDir": "src",
"baseUrl": "src",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"include": [
"src"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment