mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
36 lines
388 B
Markdown
36 lines
388 B
Markdown
# babel-preset-react
|
|
|
|
> Babel preset for all React plugins.
|
|
|
|
## Install
|
|
|
|
```sh
|
|
$ npm install --save-dev babel-preset-react
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Via `.babelrc` (Recommended)
|
|
|
|
**.babelrc**
|
|
|
|
```json
|
|
{
|
|
"presets": ["react"]
|
|
}
|
|
```
|
|
|
|
### Via CLI
|
|
|
|
```sh
|
|
$ babel script.js --presets react
|
|
```
|
|
|
|
### Via Node API
|
|
|
|
```javascript
|
|
require("babel-core").transform("code", {
|
|
presets: ["react"]
|
|
});
|
|
```
|