UNPKG

fhir

Version:

Library that assists in handling FHIR resources. Supports serialization between JSON and XML, validation and FhirPath evaluation.

15 lines (14 loc) 300 B
const path = require('path'); module.exports = { entry: './fhir.js', resolve: { fallback: { "string_decoder": false } }, output: { filename: 'bundle.js', library: 'Fhir', path: path.resolve(__dirname, 'dist') } };