We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0153d4 commit 519fd36Copy full SHA for 519fd36
app/templates/Gruntfile.js
@@ -589,7 +589,10 @@ module.exports = function (grunt) {
589
// Compiles ES6 to JavaScript using Babel
590
babel: {
591
options: {
592
- sourceMap: true
+ sourceMap: true,
593
+ optional: [
594
+ 'es7.classProperties'
595
+ ]
596
},<% if(filters.babel) { %>
597
client: {
598
files: [{
app/templates/karma.conf.js
@@ -43,7 +43,10 @@ module.exports = function(config) {
43
44
babelPreprocessor: {
45
46
- sourceMap: 'inline'
+ sourceMap: 'inline',
47
48
49
50
},
51
filename: function (file) {
52
return file.originalPath.replace(/\.js$/, '.es5.js');
0 commit comments