6.22.0 • Published 7 years ago

babel-plugin-undeclared-variables-check v6.22.0

Weekly downloads
91,691
License
MIT
Repository
github
Last release
7 years ago

babel-plugin-undeclared-variables-check

Throw a compile-time error on references to undeclared variables

Installation

$ npm install babel-plugin-undeclared-variables-check

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["undeclared-variables-check"]
}

Via CLI

$ babel --plugins undeclared-variables-check script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["undeclared-variables-check"]
});