1.3.2 ⢠Published 5 years ago
@amaurymartiny/tsconfig v1.3.2
@amaurymartiny/tsconfig
šÆ Mostly common-sense configuration files for tsconfig
.
š Get Started
In your project's root folder:
yarn add --dev @amaurymartiny/tsconfig
And in your own tsconfig.json
, add:
{
"extends": "./node_modules/@amaurymartiny/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
}
}