UNPKG

@openmrs/esm-laboratory-app

Version:

An O3 frontend module for managing laboratory requests and queues

26 lines (24 loc) 658 B
const path = require('path'); const config = (module.exports = require('openmrs/default-webpack-config')); config.scriptRuleConfig.exclude = path.sep == '/' ? /(node_modules[^\/@openmrs\/esm\-patient\-common\-lib])/ : /(node_modules[^\\@openmrs\/esm\-patient\-common\-lib])/; config.overrides.resolve = { fallback: { crypto: false, stream: false, os: false, path: false, zlib: false, https: false, http: false, util: false, url: false, }, extensions: ['.tsx', '.ts', '.jsx', '.js', '.scss'], alias: { '@openmrs/esm-framework': '@openmrs/esm-framework/src/internal', }, }; module.exports = config;