-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.common.js
64 lines (62 loc) · 1.87 KB
/
webpack.common.js
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
57
58
59
60
61
62
63
64
const path = require("path");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const { TsconfigPathsPlugin } = require("tsconfig-paths-webpack-plugin");
module.exports = {
module: {
rules: [
{
test: /\.ts$/,
use: {
loader: "@sucrase/webpack-loader",
options: {
transforms: ["typescript"],
},
},
},
// Shaders
{
test: /\.(vert|frag|vs|fs)$/,
include: [
path.resolve(__dirname, "src"),
],
loader: "raw-loader",
},
// binary resources packed as base64
{
test: /\.(jpe?g|png|ttf|eot|svg|woff(2)?|mp3)(\?[a-z0-9=&.]+)?$/,
include: [
path.resolve(__dirname),
],
loader: "base64-inline-loader",
},
],
},
resolve: {
extensions: [".ts", ".js", ".json"],
plugins: [
new TsconfigPathsPlugin,
],
},
output: {
filename: "[name].js",
path: path.resolve(__dirname, "dist"),
pathinfo: false,
},
plugins: [
new CleanWebpackPlugin,
new HtmlWebpackPlugin({
template: path.resolve(__dirname, "index.html"),
title: (() => {
const fs = require("fs");
try {
const str = fs.readFileSync(path.resolve(__dirname, "src/gen/project.json"), "utf8");
const proj = JSON.parse(str);
return proj.application.name;
} catch (e) {
return "Voltar";
}
})(),
}),
],
};