-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
63 lines (60 loc) · 1.81 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
61
62
63
const path = require("path");
const TerserPlugin = require("terser-webpack-plugin");
const CONFIG_FORMATTER_PATH = path.join(__dirname, "./src/config/");
module.exports = {
target: "node",
optimization: {
minimize: false,
minimizer: [new TerserPlugin()],
},
//O webpack, pega todos os fontes tsx e os compacta em um unico arquivo .js. Isso é feito para contornar algumas limitações e alguns browsers que não aceitam a instrução import.
//O entry pode ser definido com um objeto. A chave, ou no nome da propriedade, nesse caso sera o nome de saida do arquivo.
entry: {
configPanel: path.join(CONFIG_FORMATTER_PATH, "app/index.tsx")
},
output: {
//Todos os arquivos tsx serão compilados e gerados seus equivalentes js na mesma pasta
path: path.resolve(__dirname, "./out/webpack"),
//O [name] abaixo é o que foi definido no "entry" acima, ou seja, o arquivo gerado tera o nome timeLineView.js
filename: "[name].js",
},
devtool: "eval-source-map",
externals: {
// the vscode-module is created on-the-fly and must be excluded.
//Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/
vscode: "commonjs vscode",
},
resolve: {
extensions: [
".js",
".ts",
".tsx",
".json",
".bundle.json",
".bundle.*.json",
],
},
module: {
rules: [
{
test: /\.(ts|tsx)$/,
include: CONFIG_FORMATTER_PATH,
use: [
{
loader: "ts-loader",
options: {
configFile: path.join(CONFIG_FORMATTER_PATH, "./app/tsconfig.json"),
},
},
],
},
{
test: /\.(bundle\.json|bundle\.*\.json)$/,
loader: "i18n-loader",
},
],
},
performance: {
hints: "warning",
},
};