mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 15:27:43 +01:00
17 lines
293 B
JavaScript
17 lines
293 B
JavaScript
|
// eslint-disable-next-line import/no-commonjs,unicorn/prefer-module
|
||
|
module.exports = function (api) {
|
||
|
api.assertVersion(7);
|
||
|
api.cache.forever();
|
||
|
|
||
|
return {
|
||
|
presets: [
|
||
|
[
|
||
|
'@adeira/babel-preset-adeira',
|
||
|
{
|
||
|
target: 'js-esm'
|
||
|
}
|
||
|
]
|
||
|
]
|
||
|
};
|
||
|
};
|