-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
85 lines (83 loc) · 2.27 KB
/
webpack.config.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
const path = require("path");
const HtmlWebpackPlugin = require('html-webpack-plugin')
const CopyWebpackPlugin = require("copy-webpack-plugin");
// this webpack config consists of two generated bundles.
// 1. The bundle that is loaded in the web worker to do background tasks
// 2. The main bundle.
module.exports = [
{
entry: {
mapview: "./index.ts",
},
output: {
filename: "[name].bundle.js",
},
devtool: 'source-map',
externals: {
three: "THREE",
ammo: "Ammo"
},
resolve: {
extensions: [".webpack.js", ".web.ts", ".ts", ".tsx", ".web.js", ".js"],
},
module: {
rules: [
{ test: /\.tsx?$/, loader: "ts-loader" },
]
},
performance: {
hints: false
},
mode: process.env.NODE_ENV || "development",
plugins: [
new HtmlWebpackPlugin({
template: './index.html'
}),
new CopyWebpackPlugin([
{
from: "node_modules/@here/harp-map-theme/resources",
to: "resources",
toType: "dir"
},
require.resolve("three/build/three.min.js"),
require.resolve("ammo.js/builds/ammo.js")
])
],
devServer: {
contentBase: path.join(__dirname, 'dist')
},
stats: {
all: false,
timings: true,
exclude: "/resources/",
errors: true,
entrypoints: true,
warnings: true
}
},
{
target: "webworker",
entry: {
decoder: "./decoder.ts",
},
output: {
filename: "[name].bundle.js",
},
devtool: 'source-map',
externals: {
three: "THREE",
},
resolve: {
extensions: [".webpack.js", ".web.ts", ".ts", ".tsx", ".web.js", ".js"],
},
module: {
rules: [
{ test: /\.tsx?$/, loader: "ts-loader" },
]
},
performance: {
hints: false
},
mode: process.env.NODE_ENV || "development"
}
]