Skip to content

Instantly share code, notes, and snippets.

@kerren
Last active July 10, 2019 20:02
Show Gist options
  • Select an option

  • Save kerren/538845ec0a2d59000cca2231cc4d9e58 to your computer and use it in GitHub Desktop.

Select an option

Save kerren/538845ec0a2d59000cca2231cc4d9e58 to your computer and use it in GitHub Desktop.
The Typescript config file for our NestJS module
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"lib": ["es2017", "es7", "es6"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"noImplicitAny": false,
"strictNullChecks": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"exclude": [
"node_modules",
"dist"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment