mirror of
https://github.com/zen-browser/components.git
synced 2025-07-09 01:15:30 +02:00
feat: Add export statement for split-views module
This commit is contained in:
parent
bde9763255
commit
6ad0e99b54
6 changed files with 1572 additions and 11 deletions
23
webpack.config.js
Normal file
23
webpack.config.js
Normal file
|
@ -0,0 +1,23 @@
|
|||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
entry: './src/index.ts',
|
||||
devtool: 'inline-source-map',
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
use: 'ts-loader',
|
||||
exclude: /node_modules/,
|
||||
},
|
||||
],
|
||||
},
|
||||
resolve: {
|
||||
extensions: ['.tsx', '.ts', '.js'],
|
||||
},
|
||||
output: {
|
||||
filename: 'components.js',
|
||||
path: path.resolve(__dirname, 'dist'),
|
||||
library: 'modulename'
|
||||
},
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue