Last active
October 19, 2021 21:42
-
-
Save leog/a6abba52f58710475c18b6cff38f041e to your computer and use it in GitHub Desktop.
Configuración TypeScript
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": { | |
| "allowJs": true, | |
| "checkJs": true, | |
| "outDir": "docs", | |
| "sourceMap": true, | |
| "target": "ES6", | |
| "noImplicitAny": true, | |
| "noImplicitReturns": true, | |
| "strict": true, | |
| "experimentalDecorators": true, | |
| "emitDecoratorMetadata": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment