1. babel5
babel: { options: { blacklist: ["useStrict"], // ... }, // ... }
2. babel6
修改.babelrc
略过模块:
{ presets: [ ["es2015", { "modules": false }] ] }
略过某个文件:
{ "presets": ["es2015"], "ignore": [ "./src/js/directive/datePicker.js" ] }
3. babel-plugin-transform-remove-strict-mode
加装这个外挂: https://www.npmjs.com/package...
其他参考:
http://stackoverflow.com/ques...