123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "presets": [
- "react",
- [
- "latest",
- {
- "es2015": {
- "modules": false
- }
- }
- ]
- ],
- "plugins": [
- "transform-class-properties",
- "transform-object-rest-spread",
- "lodash",
- [
- "babel-plugin-transform-builtin-extend",
- {
- "globals": [
- "Array"
- ]
- }
- ],
- "idx"
- ],
- "env": {
- "test": {
- "presets": [
- "react",
- "latest"
- ],
- "plugins": [
- "transform-class-properties",
- "transform-object-rest-spread",
- [
- "babel-plugin-transform-builtin-extend",
- {
- "globals": [
- "Array"
- ]
- }
- ],
- "idx"
- ]
- }
- }
- }
|