UNPKG

text-annotator

Version:

A JavaScript library for locating and annotating plain text in HTML

13 lines (11 loc) 247 B
const path = require('path') module.exports = { entry: './dist/index.js', target: 'web', mode: 'production', output: { path: path.join(__dirname, 'public/js'), filename: 'text-annotator.min.js', library: 'TextAnnotator' } }