-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
webpack.config.ts
85 lines (83 loc) · 1.95 KB
/
webpack.config.ts
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import * as webpack from "webpack";
import path = require("path");
import { CleanWebpackPlugin } from "clean-webpack-plugin";
import MonacoWebpackPlugin = require("monaco-editor-webpack-plugin");
import ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
import MiniCssExtractPlugin = require("mini-css-extract-plugin");
import CopyWebpackPlugin = require("copy-webpack-plugin");
const r = (file: string) => path.resolve(__dirname, file);
module.exports = (env: any) => {
const useCdnForMonaco = !!env["use-cdn-for-monaco"];
return {
entry: {
"content-script": r("./src/content-script"),
"content-script-main": r("./src/content-script-main/index"),
options: r("./src/options"),
styles: r("./src/styles.scss"),
},
output: {
path: r("./dist"),
filename: "[name].js",
},
devtool: "source-map",
externals: {
vscode: "commonjs vscode",
},
resolve: {
extensions: [".ts", ".js"],
},
module: {
rules: [
{
test: /\.css$/,
rules: [
{ loader: "style-loader" },
{ loader: "css-loader" },
],
},
{
test: /\.scss$/,
use: [
MiniCssExtractPlugin.loader,
"css-loader",
"sass-loader",
],
},
{
test: /\.(jpe?g|png|gif|eot|ttf|svg|woff|woff2|md)$/i,
loader: "file-loader",
},
{
test: /\.tsx?$/,
exclude: /node_modules/,
loader: "ts-loader",
options: { transpileOnly: true },
},
],
},
plugins: [
new MiniCssExtractPlugin(),
new CleanWebpackPlugin(),
new webpack.EnvironmentPlugin({
USE_CDN_FOR_MONACO: useCdnForMonaco ? "1" : "0",
}),
new ForkTsCheckerWebpackPlugin(),
new CopyWebpackPlugin({
patterns: [
{
from: "./src/options/index.html",
to: "./options.html",
},
],
}),
new CleanWebpackPlugin(),
...(useCdnForMonaco
? []
: [
new MonacoWebpackPlugin({
languages: ["markdown"],
}),
]),
],
} as webpack.Configuration;
};