Skip to content

Instantly share code, notes, and snippets.

@mgilangjanuar
Created February 22, 2021 04:08
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 mgilangjanuar/46d9d245d8fc79142a9e095632798506 to your computer and use it in GitHub Desktop.
Save mgilangjanuar/46d9d245d8fc79142a9e095632798506 to your computer and use it in GitHub Desktop.
typescript config for ^3.8.2
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"lib": ["es5", "es6", "es2017", "dom"],
"types": ["reflect-metadata"],
"noImplicitAny": false,
"moduleResolution": "node",
"esModuleInterop": true,
"removeComments": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"baseUrl": ".",
"outDir": "dist"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment