Created
November 17, 2019 16:25
-
-
Save kvedantmahajan/2f35cf0774be663eaf50039c5c4740bd to your computer and use it in GitHub Desktop.
tsconfig.json root
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es5", | |
"module": "commonjs", | |
"lib": [ | |
"dom", | |
"dom.iterable", | |
"esnext" | |
], | |
"rootDir": "packages", | |
"baseUrl": ".", | |
"strict": true, | |
"esModuleInterop": true, | |
"jsx": "react", | |
"types": [], | |
"forceConsistentCasingInFileNames": true, | |
"strictBindCallApply": true, | |
"strictFunctionTypes": true, | |
"strictNullChecks": true, | |
"noUnusedLocals": true, | |
"noImplicitReturns": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment