babel-plugin-typecheck icon indicating copy to clipboard operation
babel-plugin-typecheck copied to clipboard

Static and runtime type checking for JavaScript in the form of a Babel plugin.

Results 5 babel-plugin-typecheck issues
Sort by recently updated
recently updated
newest added

The README includes a link to [flow-runtime](https://codemix.github.io/flow-runtime), but the link is broken. Has it moved to a different URL?

Adapt a code style and declare "lint" script. It is really hard to contribute to a codebase when it has not adapted code style. I am biased (author), but I...

enhancement

``` jsx function foobar(DecoratedComponent) { return class Parent extends Component { state = { isActive: true } render() { const { isActive } = this.state; return ; } } }...