UNPKG

@cogic/annotorious

Version:

A JavaScript image annotation library

35 lines 643 B
module.exports = { entry: './src/polyfills/index.js', output: { filename: 'recogito-polyfills.js' }, performance: { hints: false }, optimization: { minimize: true }, resolve: { extensions: ['.js'] }, module: { rules: [ { test: /\.js$/, use: { loader: 'babel-loader' , options: { "presets": [ "@babel/preset-env", ], "plugins": [ [ "@babel/plugin-proposal-class-properties" ] ] } } } ] } }