-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathwebpack.config.js
More file actions
54 lines (50 loc) · 1.44 KB
/
webpack.config.js
File metadata and controls
54 lines (50 loc) · 1.44 KB
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
/******************************************************************************
*
* Copyright (c) 2017, the Perspective Authors.
*
* This file is part of the Perspective library, distributed under the terms of
* the Apache License 2.0. The full license can be found in the LICENSE file.
*
*/
const PerspectivePlugin = require("@finos/perspective-webpack-plugin");
const HtmlWebPackPlugin = require("html-webpack-plugin");
const path = require("path");
module.exports = {
mode: "development",
devtool: "source-map",
resolve: {
extensions: [".ts", ".tsx", ".js"],
},
plugins: [
new HtmlWebPackPlugin({
title: "Perspective React Example",
template: "./src/index.html",
}),
new PerspectivePlugin(),
],
module: {
rules: [
{
test: /\.js$/,
enforce: "pre",
use: ["source-map-loader"],
},
{
test: /\.ts(x?)$/,
exclude: /node_modules/,
loader: "ts-loader",
},
{
test: /\.css$/,
exclude: /node_modules\/monaco-editor/,
use: [{loader: "style-loader"}, {loader: "css-loader"}],
},
],
},
devServer: {
static: [
{directory: path.join(__dirname, "dist")},
{directory: path.join(__dirname, "./static")},
],
},
};