Implement smart buffer

This commit is contained in:
Jack Hadrill
2022-02-02 01:58:55 +00:00
parent a93bfc182f
commit 7d1a0991e4
12 changed files with 1717 additions and 152 deletions

20
webpack.config.js Normal file
View File

@@ -0,0 +1,20 @@
const path = require('path')
module.exports = {
entry: './src/index.ts',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
}
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js']
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
}
}