#swc-plugin #statement #console #remove #console-log #helps

swc-plugin-remove-console

A swc plugin to remove console.log statements

1 unstable release

0.2.0 Jun 24, 2024

#9 in #helps

MIT license

13KB
198 lines

swc plugin remove-console

A swc plugin helps you remove your console.* statement

Notice * now support:

  • log
  • warn
  • error
  • info

Configure

First ensure you've installed swc and swc-plugin-remove-console, then add following these codes in your .swcrc file

{
  "jsc": {
    "experimental": {
      "plugins": [
        [
          "swc-plugin-remove-console",
          {
            "exclude": ["error"] // this config is optional, default is [], you can pass `log`, `warn`, `error`, `info` to exclude some of them
          }
        ]
      ]
    }
  }
}

Dependencies

~0.8–2MB
~42K SLoC