-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
60 lines (56 loc) · 1.55 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
"use strict";
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
// Customized babel loader with the minimum we need to get `mdx` libraries
// working, which unfortunately codegen JSX instead of JS.
const babelLoader = {
loader: require.resolve("babel-loader"),
options: require("./.babelrc.js"),
};
/**
* Base configuration for the CLI, core, and examples.
*/
module.exports = {
mode: "development",
entry: "./src/index.tsx", // Default for boilerplate generation.
output: {
path: path.resolve("dist"),
filename: "deck.js",
},
devtool: "source-map",
resolve: {
extensions: [".tsx", ".ts", ".jsx", ".js"],
modules: [path.join(__dirname, "src"), "node_modules"],
},
module: {
// Not we use `require.resolve` to make sure to use the loader installed
// within _this_ project's `node_modules` traversal tree.
rules: [
{
test: /\.[tj]sx?$/,
use: [babelLoader],
},
// `.md` files are processed as pure text.
{
test: /\.md$/,
use: [require.resolve("raw-loader")],
},
// `.mdx` files go through babel and our mdx transforming loader.
{
test: /\.mdx$/,
use: [babelLoader, require.resolve("spectacle-mdx-loader")],
},
{
test: /\.(png|svg|jpg|gif)$/,
use: [require.resolve("file-loader")],
},
],
},
// Default for boilerplate generation.
plugins: [
new HtmlWebpackPlugin({
title: "Why Typescript matters",
template: "./src/index.html",
}),
],
};