mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-04 06:43:12 +00:00
13 lines
266 B
JavaScript
13 lines
266 B
JavaScript
|
|
const config = {
|
||
|
|
extension: ['ts'],
|
||
|
|
require: ['ts-node/register', 'isomorphic-fetch'],
|
||
|
|
loader: 'ts-node/esm',
|
||
|
|
'node-option': [
|
||
|
|
'experimental-specifier-resolution=node',
|
||
|
|
'loader=ts-node/esm'
|
||
|
|
],
|
||
|
|
exit: true,
|
||
|
|
retries: 0
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = config;
|