Questions tagged [babel-cli]
61 questions
-4
votes
1 answer
Babel not transpiling ES6 computed property names
Babel is not transpiling ES6 computed property names. It compiles everything else though. Not sure what's going on. Using the latest version of cli.
var name = "John";
var age = 12;
var count = 5;
var postfix = 'age';
var person = {
name,
…

Yasin Yaqoobi
- 1,888
- 3
- 27
- 38