mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
44 lines
1.0 KiB
JavaScript
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",
|
|
}),
|
|
],
|
|
};
|