Skip to content

Instantly share code, notes, and snippets.

@yuritoledo
Created April 4, 2019 12:31
Show Gist options
  • Save yuritoledo/c69e91580c163b2bea77c9615a1c5434 to your computer and use it in GitHub Desktop.
Save yuritoledo/c69e91580c163b2bea77c9615a1c5434 to your computer and use it in GitHub Desktop.
tsconfig for CRA started without typescript
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"allowUnreachableCode": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve"
},
"include": [
"src"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment