Skip to content

Instantly share code, notes, and snippets.

@Breta01
Created January 19, 2022 08:29
Show Gist options
  • Save Breta01/56bf3a4a1785bdc9a62b116d984c733b to your computer and use it in GitHub Desktop.
Save Breta01/56bf3a4a1785bdc9a62b116d984c733b to your computer and use it in GitHub Desktop.
TypeScript config file
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment