phantasmal-world/webpack.common.js
2019-09-14 17:31:03 +02:00

27 lines
662 B
JavaScript

const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin");
const { ProvidePlugin } = require("webpack");
module.exports = {
entry: "./src/index.ts",
output: {
path: path.resolve(__dirname, "dist"),
},
resolve: {
extensions: [".js", ".ts", ".tsx"],
},
plugins: [
new HtmlWebpackPlugin({
title: "Phantasmal World",
}),
new MonacoWebpackPlugin({
languages: [],
}),
new ProvidePlugin({
$: "jquery",
jQuery: "jquery",
}),
],
};