1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-07-30 16:50:46 +00:00

Added DomManager

Signed-off-by: Florian Bouillon <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-09-02 12:50:47 +02:00
parent ac6fe0e4a2
commit a5ee777860
10 changed files with 290 additions and 0 deletions

View File

@ -0,0 +1,17 @@
module.exports = {
entry: './src/index',
output: {
path: __dirname,
filename: './dist/browser.js',
},
resolve: {
extensions: ['.js', '.ts'],
},
module: {
rules: [
{
test: /\.ts$/, use: ['babel-loader', 'ts-loader'], exclude: /node_modules/
}
]
}
}