Last active
November 17, 2019 16:30
-
-
Save kvedantmahajan/3d57e1c6360a7405bc26347b0dd9e99a to your computer and use it in GitHub Desktop.
tsconfig.json ui-core
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" | |
], | |
"declaration": true, | |
"outDir": "dist", | |
"strict": true, | |
"esModuleInterop": true, | |
"jsx": "react", | |
"types": [], | |
"forceConsistentCasingInFileNames": true, | |
"strictBindCallApply": true, | |
"strictFunctionTypes": true, | |
"strictNullChecks": true, | |
"noUnusedLocals": true, | |
"noImplicitReturns": true, | |
"sourceMap": true, | |
"skipLibCheck": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment