mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 21:48:04 -05:00
23 lines
568 B
JavaScript
23 lines
568 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: ['babel-preset-expo'],
|
|
plugins: [
|
|
['babel-plugin-inline-import', {
|
|
extensions: ['.md']
|
|
}],
|
|
[
|
|
'module-resolver',
|
|
{
|
|
alias: {
|
|
'isomorphic-webcrypto': 'isomorphic-webcrypto/src/react-native',
|
|
'fast-text-encoding': 'fast-text-encoding/text',
|
|
'jsonld': '@digitalcredentials/jsonld',
|
|
'jsonld-signatures': '@digitalcredentials/jsonld-signatures',
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|
|
};
|