TypeScript configuration hints set (typescript-config
)
typescript-config
contains hints to check if your TypeScript
configuration has the most recommended configuration.
Why is this important?
If you are building an app or a website using TypeScript, you
need to be sure that your configuration is the best for your needs.
Hints
How to use these hints?
To use it you will have to install it via npm
:
npm install @hint/hint-typescript-config
Note: You can make npm
install it as a devDependency
using the
--save-dev
parameter, or to install it globally, you can use the
-g
parameter. For other options see npm
's
documentation.
And then activate it via the .hintrc
configuration file:
{
"connector": {...},
"formatters": [...],
"hints": {
"typescript-config/is-valid": "error",
"typescript-config/no-comment": "error",
"typescript-config/target": "error",
...
},
"parsers": [...],
...
}
Further Reading