mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
47 lines
929 B
JavaScript
47 lines
929 B
JavaScript
const path = require('path');
|
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
|
|
|
module.exports = {
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: '[name].js',
|
|
library: {
|
|
type: 'umd',
|
|
},
|
|
},
|
|
entry: {
|
|
mindplot: './src/index.ts',
|
|
loader: './src/indexLoader.ts',
|
|
},
|
|
mode: 'production',
|
|
devtool: 'source-map',
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /.(js$)/,
|
|
use: ['babel-loader'],
|
|
exclude: [
|
|
/node_modules/,
|
|
],
|
|
enforce: 'pre',
|
|
},
|
|
{
|
|
test: /\.(ts)$/,
|
|
use: 'ts-loader',
|
|
exclude: '/node_modules/',
|
|
},
|
|
{
|
|
test: /\.(png|svg)$/i,
|
|
type: 'asset/inline',
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@libraries': path.resolve(__dirname, '../../libraries/'),
|
|
},
|
|
extensions: ['.js', '.ts', '.json'],
|
|
},
|
|
plugins: [new CleanWebpackPlugin()],
|
|
};
|