-
Notifications
You must be signed in to change notification settings - Fork 89
/
webpack.standalone.config.ts
56 lines (54 loc) · 1.57 KB
/
webpack.standalone.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import path from "path";
import HtmlWebpackPlugin from "html-webpack-plugin";
/* We are basically telling webpack to take index.js from entry. Then check for all file extensions in resolve.
After that apply all the rules in module.rules and produce the output and place it in main.js in the public folder. */
// this is for future, is not meant to be used!!! also it is for development mode
export default {
mode: "development",
entry: "./src/renderer/renderer.tsx",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bundle.js",
},
target: "web",
devServer: {
port: "3000",
static: {
directory: path.join(__dirname, "dist"),
},
open: true,
hot: true,
liveReload: true,
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(__dirname, "src", "renderer", "index.html"),
}),
],
resolve: {
extensions: [".js", ".jsx", ".json", ".ts", ".tsx"],
alias: {
Assets: path.resolve(__dirname, "src", "static"),
Renderer: path.resolve(__dirname, "src", "renderer"),
Types: path.resolve(__dirname, "src", "renderer", "types"),
},
},
module: {
rules: [
{
test: /\.(js|jsx)$/, // kind of file extension this rule should look for and apply in test
exclude: /node_modules/, // folder to be excluded
use: "babel-loader", // loader which we are going to use
},
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
],
},
};