UNPKG

augnitoambientsdk

Version:

Use this typescript SDK to integrate Augnito’s Ambient Tech within your EMR. To get access credentials or know more about how Augnito Ambient can benefit you, please visit our website and connect with our sales team: https://augnito.ai/

32 lines (30 loc) 770 B
import { nodeResolve } from "@rollup/plugin-node-resolve"; import commonjs from "rollup-plugin-commonjs"; import babel from "@rollup/plugin-babel"; import typescript from "rollup-plugin-typescript2"; import json from "@rollup/plugin-json"; import { terser } from "rollup-plugin-terser"; import cleanup from "rollup-plugin-cleanup"; export default [ { input: "src/index.ts", output: { name: "augnitoambientsdk", file: "dist/augnitoambientsdk.js", format: "es", sourcemap: false, }, plugins: [ json(), nodeResolve(), commonjs(), typescript({ rollupCommonJSResolveHack: false, clean: true, }), babel({ babelHelpers: "bundled" }), terser(), cleanup(), ], }, ];