Skip to content

Instantly share code, notes, and snippets.

@kellenff
Created October 8, 2020 20:35
Show Gist options
  • Save kellenff/ebc5b42d8c8376a3e9b2c559e54fdc71 to your computer and use it in GitHub Desktop.
Save kellenff/ebc5b42d8c8376a3e9b2c559e54fdc71 to your computer and use it in GitHub Desktop.
Create React App's tsconfig template
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"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