Last active
May 11, 2020 20:17
-
-
Save fkirc/8fd2a4cb0289a0a0fd03381318eb2ed0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To be combined with a reasonable ESLint config: https://gist.github.com/fkirc/8c62c360255e82f11b9eb3815142326b