1.3.5 ā€¢ Published 3 years ago

@amaurym/tsconfig v1.3.5

Weekly downloads
828
License
MIT
Repository
github
Last release
3 years ago

npm License code style: prettier dependencies Status Buy me a tree

@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
  }
}