Skip to content

Instantly share code, notes, and snippets.

@fkirc
Last active May 11, 2020 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fkirc/8fd2a4cb0289a0a0fd03381318eb2ed0 to your computer and use it in GitHub Desktop.
Save fkirc/8fd2a4cb0289a0a0fd03381318eb2ed0 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"target": "es2018",
"lib": [
"es6",
"dom",
"dom.iterable",
"esnext",
"es2018"
],
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"downlevelIteration": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"noEmitOnError": true,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"typeRoots": [
"node_modules/@types"
],
"sourceMap": true,
"inlineSources": true,
"sourceRoot": "/"
},
"include": [
"src"
]
}
@fkirc
Copy link
Author

fkirc commented May 11, 2020

To be combined with a reasonable ESLint config: https://gist.github.com/fkirc/8c62c360255e82f11b9eb3815142326b

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment