fastiterationmap
Version:
an ES6 typescript Map that can be iterate like an Array
23 lines (21 loc) • 426 B
JavaScript
const path = require('path');
module.exports = {
entry: ["./src/FastIterationMap.ts"],
watch: false,
output: {
path: path.resolve('./dist'),
filename: "index.js",
libraryTarget: 'umd'
},
module: {
rules: [
{
test: /\.ts?$/,
loader: 'ts-loader'
}
]
},
resolve: {
extensions: [ '.ts' ]
}
};