mirror of
https://github.com/pezkuwichain/phishing.git
synced 2026-04-22 09:08:02 +00:00
a6b2a357b4
* Default to type: module * latest
14 lines
421 B
JavaScript
14 lines
421 B
JavaScript
// Copyright 2020-2021 @polkadot/phishing authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
const config = require('@polkadot/dev/config/jest.cjs');
|
|
|
|
module.exports = Object.assign({}, config, {
|
|
moduleNameMapper: {},
|
|
modulePathIgnorePatterns: [
|
|
'<rootDir>/build',
|
|
'<rootDir>/packages/phishing/build'
|
|
],
|
|
transformIgnorePatterns: ['/node_modules/(?!@polkadot|@babel/runtime/helpers/esm/)']
|
|
});
|