mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-06-15 20:01:06 +00:00
Default to type: module (#447)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// Copyright 2017-2021 @polkadot/ui authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
const base = require('@polkadot/dev/config/babel-config-cjs.cjs');
|
||||
|
||||
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;
|
||||
}, {});
|
||||
Reference in New Issue
Block a user