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

swc-plugin-remove-console

一个用于删除 console.log 语句的 swc 插件

1 个不稳定版本

0.2.0 2024年6月24日

#12 in #helps

MIT 许可证

13KB
198 代码行

swc 插件 remove-console

一个 swc 插件,帮助您删除 console.* 语句

注意 * 现在支持

  • log
  • warn
  • error
  • info

配置

首先确保您已安装 swcswc-plugin-remove-console,然后在您的 .swcrc 文件中添加以下代码

{
  "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
          }
        ]
      ]
    }
  }
}

依赖

~0.8–2MB
~42K SLoC