在传统的 Ember 应用程序中,我的ember-cli-build.js
:
//ember-cli-build.js
module.exports = function(defaults) {
var app = new EmberApp(defaults, {
babel: {
includePolyfill: true,
ignore: ['my-ember-ui/models/myFile.js'] // <-- question is here
},
使用 Ember 引擎(或插件)时是否有与此等价的功能?我在 ember-cli-babel 或 ember-engines 中找不到任何东西。
我知道这ember-cli-build.js
仅适用于使用引擎时的虚拟应用程序,所以我不会在那里进行更改。我在文件中尝试了与上面类似的index.js
方法,但没有任何运气。babel 没有忽略该文件。我需要一种忽略特定文件的方法。谢谢!