mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-23 03:48:01 +00:00
9e5a2ac7c5
* Bump dev * Fix linting
15 lines
333 B
JavaScript
15 lines
333 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const base = require('@polkadot/dev/config/babel');
|
|
|
|
module.exports = Object.keys(base).reduce((config, key) => {
|
|
config[key] = base[key];
|
|
|
|
if (key === 'plugins') {
|
|
config[key] = config[key].concat([
|
|
'transform-vue-template'
|
|
]);
|
|
}
|
|
|
|
return config;
|
|
}, {});
|