1
0
mirror of https://github.com/kremalicious/blowfish.git synced 2024-06-23 01:36:43 +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(/^\^|~/, '')
}
}
}
]
]
}