gotelem/web/webpack.common.js

40 lines
968 B
JavaScript
Raw Permalink Normal View History

import path from 'path';
import {fileURLToPath} from 'url';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import CopyPlugin from 'copy-webpack-plugin';
2024-03-04 05:04:41 +00:00
const config = {
entry: './src/app.ts',
2024-03-04 05:04:41 +00:00
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
plugins: [
new HtmlWebpackPlugin({
template: 'src/index.html',
filename: 'index.html',
}),
new CopyPlugin({
patterns: [
{ from: "**/*", to: "openmct/", context: "node_modules/openmct/dist"},
]
})
],
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
externals: {
openmct: "openmct",
},
output: {
filename: 'main.js',
path: path.resolve(path.dirname(fileURLToPath(import.meta.url)), 'dist'),
2024-03-04 05:04:41 +00:00
},
};
export default config