> For the complete documentation index, see [llms.txt](https://docs.exile.watch/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.exile.watch/projects/splinters/exile-watch-typescript-config.md).

# @exile-watch/typescript-config

<figure><img src="/files/phOqyIiKbklQTpQi6Q8A" alt="" width="200"><figcaption><p>exile.watch logo</p></figcaption></figure>

## About [`@exile-watch/typescript-config`](https://github.com/exile-watch/splinters/tree/main/packages/typescript-config)

This package contains both, shared TypeScript configuration and the TypeScript dependency itself.

## About TypeScript

[TypeScript](https://www.typescriptlang.org/) is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.

## Usage

1. Install the package as a `devDependency`:

```bash
npm i -D @exile-watch/typescript-config
```

***

2. In the project’s `package.json` file, add the following npm script to the scripts property:

```json5
// {root}/package.json
{
  // ...
  "scripts": {
    // ...
    "typecheck": "tsc --noEmit"
  }
}
```
