New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@teambit/babel

Package Overview
Dependencies
Maintainers
18
Versions
1605
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@teambit/babel

## FAQ

0.0.81
Source
npm
Version published
Weekly downloads
909
-22.37%
Maintainers
18
Weekly downloads
 
Created
Source

Babel Compiler

FAQ

Q: I'm getting an error about missing plugins.

A: There are two options:

  • You're using this plugin in the config passed to the compiler. In this case, make sure that workspace.jsonc has the plugins and that you ran bit install. Example of the workspace.jsonc settings:
"my-babel-env": {
      "teambit.bit/aspect": {},
      "teambit.bit/dependency-resolver": {
        "policy": {
          "dependencies": {
            "@babel/core": "7.11.6",
            "@babel/preset-react": "7.12.1",
            "@babel/preset-env": "7.11.5",
            "@babel/preset-typescript": "7.10.4",
            "@babel/plugin-proposal-class-properties": "7.10.4"
          }
        }
      }
    },
  • You're not using the plugin. The reason for the error is that Babel searches for config files in different directories. To disable this, add the following to the config you pass to the compiler:
{
  ...
  "babelrc": false,
  "configFile": false,
}

this takes care of both .babelrc and babel.config.json.

FAQs

Package last updated on 23 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts