Search code examples
ember.jsember-cli

"Unexpected whitespace character" undefined "?"


ember-cli build issue. I have added "-W100":true inside global jshint file. I can't fix this issue.


Solution

  • Disabling broccoli-es3-safe-recast using

    var app = new EmberApp({
        es3Safe: false
    });
    

    in Brocfile.js, as suggested here should work.