1
0
mirror of https://github.com/kremalicious/blowfish.git synced 2024-06-26 03:06:44 +02:00
blowfish/tests/babel.config.js

17 lines
277 B
JavaScript

const { devDependencies } = require('../package.json')
module.exports = {
presets: [
[
'next/babel',
{
'preset-env': {
targets: {
electron: devDependencies.electron.replace(/^\^|~/, '')
}
}
}
]
]
}