mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-15 07:21:07 +00:00
8 lines
204 B
JavaScript
8 lines
204 B
JavaScript
|
module.exports = function(api) {
|
||
|
api.cache(true);
|
||
|
return {
|
||
|
presets: ["@babel/preset-env"],
|
||
|
plugins: ["@babel/plugin-transform-modules-commonjs"],
|
||
|
babelrcRoots: [".", "node_modules"]
|
||
|
};
|
||
|
}
|