Skip to content

Instantly share code, notes, and snippets.

@blackfry
Last active November 10, 2020 23:07
Show Gist options
  • Save blackfry/1a00acb08be649b4e44136ae795ded45 to your computer and use it in GitHub Desktop.
Save blackfry/1a00acb08be649b4e44136ae795ded45 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext", "dom"],
"allowJs": true,
"jsx": "react",
"sourceMap": true,
"outDir": "build",
"rootDir": "src",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"baseUrl": "./",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"include": ["src"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment