Created
April 23, 2021 04:34
-
-
Save pablohdzvizcarra/f9526f169fbc55caeb5b26131765fd2e to your computer and use it in GitHub Desktop.
ts-my-config
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": { | |
"module": "commonjs", | |
"target": "es5", | |
"sourceMap": true, | |
"noImplicitAny": true, | |
"removeComments": true, | |
"preserveConstEnums": true, | |
"outDir": "dist", | |
"allowSyntheticDefaultImports": true, | |
"esModuleInterop": true // permite exportaciones por defecto | |
}, | |
"exclude": ["node_modules", "src/**/*.test.ts"], | |
"include": ["src/**/*"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment