Created
February 12, 2022 14:03
-
-
Save szul/75ab50eb7b6724f94a4e004e37d31470 to your computer and use it in GitHub Desktop.
Stricter TypeScript configuration
This file contains hidden or 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": { | |
"target":"es6", | |
"module": "commonjs", | |
"declaration": true, | |
"sourceMap": true, | |
"outDir": "./lib", | |
"rootDir": "./src", | |
"types": [ | |
"node" | |
], | |
"skipLibCheck": true, | |
"skipDefaultLibCheck": true, | |
"resolveJsonModule": true, | |
"experimentalDecorators": true, | |
"emitDecoratorMetadata": true, | |
"esModuleInterop": true, | |
"allowSyntheticDefaultImports": true, | |
"forceConsistentCasingInFileNames": true, | |
"noImplicitReturns": true, | |
"strict": true, | |
"noUnusedLocals": true | |
}, | |
"include": [ | |
"src/**/*" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment