examples: Add an example of using duck-typed interfaces

This commit is contained in:
Nick Fitzgerald
2018-09-11 16:29:25 -07:00
parent 27a7008764
commit a311c29f1d
11 changed files with 121 additions and 0 deletions

View File

@ -0,0 +1,10 @@
const path = require('path');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
},
mode: 'development'
};