Last active
December 22, 2019 17:31
-
-
Save ernestofreyreg/3548d2457f1cd9db3e6747deea90d30e to your computer and use it in GitHub Desktop.
This file contains hidden or 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": { | |
| "outDir": "build", | |
| "module": "esnext", | |
| "target": "es5", | |
| "lib": ["es6", "dom", "es2016", "es2017"], | |
| "sourceMap": true, | |
| "allowJs": false, | |
| "declaration": true, | |
| "moduleResolution": "node", | |
| "forceConsistentCasingInFileNames": true, | |
| "noImplicitReturns": true, | |
| "noImplicitThis": true, | |
| "noImplicitAny": true, | |
| "strictNullChecks": true, | |
| "suppressImplicitAnyIndexErrors": true, | |
| "noUnusedLocals": true, | |
| "noUnusedParameters": true, | |
| "esModuleInterop": true | |
| }, | |
| "include": ["src"], | |
| "exclude": ["node_modules", "build"] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment