Last active
July 17, 2024 15:30
-
-
Save samuelastech/95c2313e3d9327d782b1f626539f92cf to your computer and use it in GitHub Desktop.
A TypeScript config
This file contains 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": { | |
"outDir": "dist/app", | |
"target": "ES6", | |
"noEmitOnError": true, | |
"module": "NodeNext", | |
"moduleResolution": "NodeNext", | |
"removeComments": true, | |
"strictNullChecks": true, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"strict": true | |
}, | |
"include": ["app/**/*.ts"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment