mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
const common = require("./webpack.common.js");
|
|
const path = require("path");
|
|
const { merge } = require("webpack-merge");
|
|
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
|
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
|
const Dotenv = require("dotenv-webpack");
|
|
|
|
module.exports = merge(common, {
|
|
mode: "development",
|
|
devtool: "eval-source-map",
|
|
devServer: {
|
|
port: 1623,
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ts$/,
|
|
loader: "ts-loader",
|
|
options: {
|
|
// fork-ts-checker-webpack-plugin does the type checking in a separate process.
|
|
transpileOnly: true,
|
|
},
|
|
include: path.resolve(__dirname, "src"),
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
exclude: /node_modules/,
|
|
use: [
|
|
{
|
|
loader: MiniCssExtractPlugin.loader,
|
|
options: {
|
|
esModule: true,
|
|
hmr: true,
|
|
},
|
|
},
|
|
{
|
|
loader: "css-loader",
|
|
options: {
|
|
sourceMap: true,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
include: /node_modules/,
|
|
use: [
|
|
MiniCssExtractPlugin.loader,
|
|
{
|
|
loader: "css-loader",
|
|
options: {
|
|
sourceMap: true,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new Dotenv({
|
|
path: "./.env.dev",
|
|
}),
|
|
new ForkTsCheckerWebpackPlugin(),
|
|
new MiniCssExtractPlugin({
|
|
ignoreOrder: true,
|
|
}),
|
|
],
|
|
});
|