Initial example of using the WebAudio APIs from web-sys

Part of #443
This commit is contained in:
Andrew Chin
2018-08-16 22:30:46 -04:00
parent 25b6f5d982
commit 4f18e21659
11 changed files with 279 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'
};