forked from aws-samples/amazon-sumerian-hosts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.test.js
71 lines (65 loc) · 1.37 KB
/
webpack.test.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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: MIT-0
const webpack = require('webpack');
const path = require('path');
const corePath = path.resolve(__dirname, './src/core/');
const threePath = path.resolve(__dirname, './src/three.js/');
const babylonPath = path.resolve(__dirname, './src/Babylon.js/');
const baseConfig = {
mode: 'none',
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /(node_modules|bower_components)/,
query: {
presets: ['@babel/preset-env'],
},
},
],
},
resolve: {
alias: {
core: corePath,
},
},
};
const coreConfig = {
...baseConfig,
resolve: {
alias: {
...baseConfig.resolve.alias,
app: corePath,
},
},
};
const threeConfig = {
...baseConfig,
resolve: {
alias: {
...baseConfig.resolve.alias,
app: threePath,
},
},
plugins: [
new webpack.ProvidePlugin({
THREE: 'three',
}),
],
};
const babylonConfig = {
...baseConfig,
resolve: {
alias: {
...baseConfig.resolve.alias,
app: babylonPath,
},
},
plugins: [
new webpack.ProvidePlugin({
BABYLON: 'babylonjs',
}),
],
};
module.exports = [coreConfig, threeConfig, babylonConfig];