mirror of
https://github.com/dzeiocom/libs.git
synced 2025-07-29 08:19:51 +00:00
Initial commit With Logger
This commit is contained in:
17
packages/logger/webpack.config.js
Normal file
17
packages/logger/webpack.config.js
Normal 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/
|
||||
}
|
||||
]
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user