forked from vuejs/vue-cli
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e8aacc
commit 930420e
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# @vue/cli-plugin-babel | ||
|
||
> babel plugin for vue-cli | ||
## Configuration | ||
|
||
Uses Babel 7 + `babel-loader` + [@vue/babel-preset-app](https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/babel-preset-app) by default, but can be configured via `babel.config.js` to use any other Babel presets or plugins. | ||
|
||
By default, `babel-loader` excludes files inside `node_modules` dependencies. If you wish to explicitly transpile a dependency module, you will need to add it to the `transpileDependencies` option in `vue.config.js`: | ||
|
||
``` js | ||
module.exports = { | ||
transpileDependencies: [ | ||
// can be string or regex | ||
'my-dep', | ||
/other-dep/ | ||
] | ||
} | ||
``` | ||
|
||
## Caching | ||
|
||
[cache-loader](https://github.com/webpack-contrib/cache-loader) is enabled by default and cache is stored in `<projectRoot>/node_modules/.cache/babel-loader`. | ||
|
||
## Parallelization | ||
|
||
[thread-loader](https://github.com/webpack-contrib/thread-loader) is enabled by default when the machine has more than 1 CPU cores. This can be turned off by setting `parallel: false` in `vue.config.js`. | ||
|
||
## Installing in an Already Created Project | ||
|
||
``` sh | ||
vue add babel | ||
``` | ||
|
||
## Injected webpack-chain Rules | ||
|
||
- `config.rule('js')` | ||
- `config.rule('js').use('babel-loader')` | ||
- `config.rule('js').use('cache-loader')` |