Created
December 20, 2015 08:37
-
-
Save SimenB/0b84772c01305e5485f3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Show hidden characters
{ | |
"presets": ["es2015"], | |
"plugins": ["transform-es3-property-literals", "transform-es3-member-expression-literals"] | |
} |
This file contains hidden or 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
'use strict'; | |
var _meep = require('meep'); | |
var _meep2 = _interopRequireDefault(_meep); | |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } | |
(0, _meep2.default)('meep'); |
This file contains hidden or 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
{ | |
"name": "babel-6-properties", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"start": "babel src.js --out-file out.js" | |
}, | |
"author": "", | |
"license": "ISC", | |
"devDependencies": { | |
"babel-cli": "^6.3.17", | |
"babel-plugin-transform-es3-member-expression-literals": "^6.3.13", | |
"babel-plugin-transform-es3-property-literals": "^6.3.13", | |
"babel-preset-es2015": "^6.3.13" | |
} | |
} |
This file contains hidden or 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
import meep from 'meep'; | |
meep('meep'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment