forked from ColeVanOphem/MichMoney
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
46 lines (44 loc) · 1.12 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
const path = require("path");
const { existsSync } = require("fs");
// Set the entrypoint to main.jsx by default, but main.tsx if using TypeScript.
let entry = "./michmoney/js/main.jsx";
if (existsSync("./michmoney/js/main.tsx")) {
entry = "./michmoney/js/main.tsx";
}
module.exports = {
mode: "development",
entry,
output: {
path: path.join(__dirname, "/michmoney/static/js/"),
filename: "bundle.js",
},
devtool: "source-map",
module: {
rules: [
{
// Test for js or jsx files
test: /\.jsx?$/,
// Exclude external modules from loader tests
exclude: /node_modules/,
loader: "babel-loader",
options: {
presets: ["@babel/preset-env", "@babel/preset-react"],
plugins: ["@babel/transform-runtime"],
},
},
{
// Support for TypeScript in optional .ts or .tsx files
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
],
},
resolve: {
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
};