Skip to content

Instantly share code, notes, and snippets.

@samuelastech
Created July 15, 2024 15:02
Show Gist options
  • Save samuelastech/95c2313e3d9327d782b1f626539f92cf to your computer and use it in GitHub Desktop.
Save samuelastech/95c2313e3d9327d782b1f626539f92cf to your computer and use it in GitHub Desktop.
A TypeScript config
{
"compilerOptions": {
"outDir": "dist/app",
"target": "ES6",
"noEmitOnError": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"removeComments": true,
"strictNullChecks": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"include": ["app/**/*.ts"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment