mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
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"]
});