8.1.1 • Published 11 months ago

@krakenjs/babel-config-grumbler v8.1.1

Weekly downloads
-
License
-
Repository
github
Last release
11 months ago

@krakenjs/babel-config-grumbler

Installation

npm install -D @krakenjs/babel-config-grumbler

Usage

  1. Create a .babelrc file at the root of your package.

  2. Identify the type of babel config to use: node or browser.

3a. For node packages add the following contents to your .babelrc:

```json
{
    "extends": "@krakenjs/babel-config-grumbler/babel-node"
}
```

3b. For browser packages add the following contents to your .babelrc:

```json
{
    "extends": "@krakenjs/babel-config-grumbler/babel-browser"
}
```
  1. Ensure you have a browserlist configuration in your package.json

      "browserslist": [
        "IE >= 9",
        "chrome >= 27",
        "firefox >= 30",
        "safari >= 5",
        "opera >= 23"
    ],