1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "presets": [
- [
- "env",
- {
- "modules": false,
- "targets": {
- "browsers": [
- "> 1%",
- "last 2 versions",
- "not ie <= 8"
- ]
- }
- }
- ],
- "stage-2"
- ],
- "plugins": [
- "transform-vue-jsx",
- "transform-runtime",
- [
- "component",
- [
- {
- "libraryName": "element-ui",
- "styleLibraryName": "theme-chalk"
- }
- ]
- ]
- ],
- "env": {
- "test": {
- "presets": [
- "env",
- "stage-2"
- ],
- "plugins": [
- "transform-vue-jsx",
- "transform-es2015-modules-commonjs",
- "dynamic-import-node"
- ]
- }
- }
- }
|