Skip to content

Instantly share code, notes, and snippets.

@pablohdzvizcarra
Created April 23, 2021 04:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pablohdzvizcarra/f9526f169fbc55caeb5b26131765fd2e to your computer and use it in GitHub Desktop.
Save pablohdzvizcarra/f9526f169fbc55caeb5b26131765fd2e to your computer and use it in GitHub Desktop.
ts-my-config
{
"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