Skip to content

Instantly share code, notes, and snippets.

@rajeshdavidbabu
Last active January 9, 2022 22:07
Show Gist options
  • Save rajeshdavidbabu/e64661d1179274abdffe026ee3ec8eaa to your computer and use it in GitHub Desktop.
Save rajeshdavidbabu/e64661d1179274abdffe026ee3ec8eaa to your computer and use it in GitHub Desktop.
TS config React-TS Architecture
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": ["src"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment