phantasmal-world/webpack.common.js
2020-09-29 17:07:13 +02:00

44 lines
1.0 KiB
JavaScript

const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin");
const { ProvidePlugin } = require("webpack");
const PnpWebpackPlugin = require(`pnp-webpack-plugin`);
module.exports = {
entry: "./src/index.ts",
output: {
path: path.resolve(__dirname, "dist"),
},
resolve: {
extensions: [".js", ".ts"],
plugins: [
PnpWebpackPlugin,
],
},
resolveLoader: {
plugins: [
PnpWebpackPlugin.moduleLoader(module),
],
},
module: {
rules: [
{
test: /\.(gif|jpg|png|svg|ttf)$/,
loader: "file-loader",
},
],
},
plugins: [
new HtmlWebpackPlugin({
title: "Phantasmal World",
}),
new MonacoWebpackPlugin({
languages: [],
}),
new ProvidePlugin({
$: "jquery",
jQuery: "jquery",
}),
],
};