Skip to content

Instantly share code, notes, and snippets.

@OtayNacef
Created March 11, 2021 09:27
Show Gist options
  • Save OtayNacef/89dff9d572e9a666f72da704927e5472 to your computer and use it in GitHub Desktop.
Save OtayNacef/89dff9d572e9a666f72da704927e5472 to your computer and use it in GitHub Desktop.
React TypeScript Without CRA
{
"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