@amaurym/tsconfig
v1.3.5
Published
Mostly common-sense configuration for tsconfig
Downloads
88
Readme
@amaurym/tsconfig
💯 Mostly common-sense configuration files for tsconfig
.
🚀 Get Started
In your project's root folder:
yarn add --dev @amaurym/tsconfig
And in your own tsconfig.json
, add:
{
"extends": "./node_modules/@amaurym/tsconfig/tsconfig"
}
📖 Included Rules
I try to use as much defaults from the TypeScript team as possible, but I find --strict
to be really useful to have elegant code.
{
"compilerOptions": {
"esModuleInterop": true,
"strict": true
}
}