I want to introduce a typescript coding guideline that can be shared accross multiple projects. I don't want to copy paste a tslint.json
over multiple times, it has happened currently and we have diverged version of it going around.
I want to base my guideline on tslint:recommended
. And I see that the tslint syntax allows for extend
, yet I am unclear about its usage and how to structure such a package.
Can such a project consists of merely a tslint.json
itself or do I need to export a module?
I want the package to then be hosted on npm/sinopia instance, yet am unsure how to proceed.