Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nicopennec/tscheck-demo

Source code of live demo for "@ts-check", an awesome feature from TypeScript for static type checking of your Vanilla JS
https://github.com/nicopennec/tscheck-demo

precommit ts-check typechecking typescript vanilla-js

Last synced: 18 days ago
JSON representation

Source code of live demo for "@ts-check", an awesome feature from TypeScript for static type checking of your Vanilla JS

Awesome Lists containing this project

README

        

# TS-Check, a static type checker for JavaScript

This project contains the source code used for live coding with ts-check.

> TypeScript 2.3 and later support a mode of type-checking and reporting errors in .js files with --checkJs.

See documentation: https://github.com/Microsoft/TypeScript/wiki/Type-Checking-JavaScript-Files

## Getting started

### Install deps

```bash
npm install
```

### Run TS-Check in standalone mode

```bash
npm run tsc

npm run tsc:watch
```

Open VIM and play with `src/*.js` files

Terminal output:
![tscheck jsdoc](assets/screenshoot-jsdoc.png)

### Try TS-Check integrated to VS Code

https://code.visualstudio.com/

Open VS Code and play with `src/*.js` files

Typing error:
![tscheck error](assets/screenshoot-error.png)

JSDoc comment:
![tscheck jsdoc](assets/screenshoot-jsdoc.png)