@exile-watch/typescript-config
Shared TypeScript configuration for exile.watch projects

This package contains both, shared TypeScript configuration and the TypeScript dependency itself.
About TypeScript
TypeScript is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.
Usage
Install the package as a
devDependency
:
npm i -D @exile-watch/typescript-config
In the project’s
package.json
file, add the following npm script to the scripts property:
// {root}/package.json
{
// ...
"scripts": {
// ...
"typecheck": "tsc --noEmit"
}
}
Last updated
Was this helpful?