Babel
  • Docs
  • Setup
  • Try it out
  • Videos
  • Blog
  • Donate
  • Team
  • GitHub
Edit

babel-plugin-transform-remove-console

Example

In

console.log("foo");
console.error("bar");

Out

Installation

npm install babel-plugin-transform-remove-console --save-dev

Usage

With a configuration file (Recommended)

// without options
{
  "plugins": ["transform-remove-console"]
}
// with options
{
  "plugins": [["transform-remove-console", { "exclude": ["error", "warn"] }]]
}

Via CLI

babel --plugins transform-remove-console script.js

Via Node API

require("@babel/core").transformSync("code", {
  plugins: ["transform-remove-console"],
});

Options

  • exclude - An array of console methods to exclude from removal.

You can read more about configuring plugin options here

  • Example
  • Installation
  • Usage
    • With a configuration file (Recommended)
    • Via CLI
    • Via Node API
  • Options
Babel
Docs
Learn ES2015
Community
VideosUser ShowcaseStack OverflowSlack ChannelTwitter
More
BlogGitHub OrgGitHub RepoWebsite RepoOld 6.x SiteOld 5.x Site