-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.dev.js
106 lines (103 loc) · 1.88 KB
/
webpack.dev.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
//devtool: "none",
entry: {
index: "./src/index.ts",
},
output: {
path: path.resolve(__dirname, "dist"),
filename: (data)=>{
return "[name].js";
},
},
plugins: [
new HtmlWebpackPlugin({
hash: true,
minify: {
collapseWhitespace: false,
removeComments: false,
collapseInlineTagWhitespace: false,
minifyJS: false,
minifyCSS: false
},
chunks: ["index"],
template: "./src/index.ejs",
filename: "index.html",
}),
],
module: {
rules: [
{
test: /\.tsx?$/i,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.html$/i,
use: ["html-loader"]
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"]
},
{
test: /\.(woff|woff2|ttf)$/,
use: {
loader: "url-loader",
options: {
limit: 50000,
},
},
},
{
test: /favicon\.png$/,
use: [{
loader: "file-loader",
options: {
name: "favicon.png"
}
}],
},
{
test: /\.(png|jpg|gif)$/,
exclude: /favicon\.png$/,
use: ["url-loader"],
},
{
test: /\.(obj|svg)$/i,
use: ["file-loader"]
},
// {
// test: /^(preview-ships\.obj)$/i,
// use: [{
// loader: "file-loader",
// options: {
// name: "preview-ships.obj"
// }
// }],
// },
{ // TODO: maybe move these up?
test: /\.(ogg|mp3|wav|mpe?g)$/i,
use: ["file-loader"]
},
// {
// test: /^(ssbundle.js)$/i,
// use: ["file-loader"]
// }
// {
// test: /\.js$/,
// /*use: [{
// loader: "script-loader",
// options: {
// sourceMap: true
// },
// }]*/
// use: "script-loader"
// }
]
},
resolve: {
extensions: [ ".tsx", ".ts", ".js" ], // Note: js was removed from this list.
}
}