1234567891011121314151617181920212223242526272829303132 |
- const webpack = require('webpack')
- const path = require('path')
- const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
- module.exports = {
- entry: './src/LSPlugin.core.ts',
- devtool: 'inline-source-map',
- module: {
- rules: [
- {
- test: /\.tsx?$/,
- use: 'ts-loader',
- exclude: /node_modules/,
- },
- ],
- },
- resolve: {
- extensions: ['.tsx', '.ts', '.js'],
- },
- plugins: [
- new webpack.ProvidePlugin({
- process: 'process/browser',
- }),
- // new BundleAnalyzerPlugin()
- ],
- output: {
- library: 'LSPlugin',
- libraryTarget: 'umd',
- filename: 'lsplugin.core.js',
- path: path.resolve(__dirname, '../static/js'),
- },
- }
|