@taogilaaa/typescript-config
v1.0.1
Published
Base Typescript config used by tscripts
Downloads
5
Readme
typescript-config
A collection of base tsconfig.json
to be extended from in your project.
This project aims to reduce per-project configuration as much as possible. With good defaults, we can focus on building, not configuring!
Installation
Using npm:
npm i -D @taogilaaa/typescript-config
Using yarn:
yarn add --dev @taogilaaa/typescript-config
Contributing
Try to optimize for the fewest specified options between the config specializations. For example, only app
has noEmit: true
, since the default value, false
, is good for the lib
config. Specifying it only in the app
config means fewer overall entries!
We want to keep maintenance low by only specifying what is necessary. If the option's default value is good for every config, remove it from every config!