mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
51 lines
933 B
JavaScript
51 lines
933 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: '[name].js',
|
|
publicPath: '',
|
|
library: {
|
|
type: 'umd',
|
|
},
|
|
},
|
|
stats: {
|
|
errorDetails: true,
|
|
},
|
|
entry: {
|
|
'editor.bundle': path.join(__dirname, 'src', 'index.tsx'),
|
|
},
|
|
mode: 'development',
|
|
devtool: 'source-map',
|
|
target: 'web',
|
|
resolve: {
|
|
extensions: ['.ts', '.tsx', '.js', '.jsx'],
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: 'ts-loader',
|
|
exclude: '/node_modules/',
|
|
},
|
|
{
|
|
test: /\.(png|jpe?g|gif|svg)$/,
|
|
type: 'asset/inline',
|
|
},
|
|
{
|
|
test: /\.(js|jsx)$/,
|
|
exclude: /node_modules/,
|
|
use: ['babel-loader'],
|
|
},
|
|
{
|
|
test: /\.css$/i,
|
|
loader: 'style-loader',
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
loader: 'css-loader',
|
|
},
|
|
],
|
|
},
|
|
};
|