-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.rules.js
54 lines (53 loc) · 1.12 KB
/
webpack.rules.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
const path = require("path");
module.exports = [
/*
// Add support for native node modules
{
test: /\.node$/,
use: {
loader: "node-loader-relative",
options: { basePath: path.join(__dirname, ".webpack", "main") },
},
},
*/
{
test: /\.(m?js|node)$/,
parser: { amd: false },
use: {
loader: "@marshallofsound/webpack-asset-relocator-loader",
options: {
outputAssetBase: "native_modules",
},
},
},
// Put your webpack loader rules in this array. This is where you would put
// your ts-loader configuration for instance:
/**
* Typescript Example:
*
* {
* test: /\.tsx?$/,
* exclude: /(node_modules|.webpack)/,
* loaders: [{
* loader: 'ts-loader',
* options: {
* transpileOnly: true
* }
* }]
* }
*/
{
test: /\.js$/,
include: /discord.js|prism-media/,
use: {
loader: "babel-loader",
options: {
plugins: [
"@babel/plugin-proposal-optional-catch-binding",
"transform-require-default",
"./util/babel-plugin",
],
},
},
},
];