forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
134 lines (128 loc) · 3.54 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
const webpack = require("webpack");
const nodeExternals = require("webpack-node-externals");
const ESLintPlugin = require("eslint-webpack-plugin");
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
const path = require("path");
const fs = require("fs");
const argv = require("yargs").argv;
const Dotenv = require('dotenv-webpack');
const debug = argv.debug !== undefined;
const lint = !(argv["no-linting"] || argv.l === true);
const config = [{
entry: {
server: [
path.join(__dirname, "/src/server/server.ts")
]
},
mode: debug ? "development" : "production",
output: {
path: path.join(__dirname, "/dist"),
filename: "[name].js",
devtoolModuleFilenameTemplate: debug ? "[absolute-resource-path]" : "[]"
},
externals: [nodeExternals()],
devtool: debug ? "source-map" : "source-map",
resolve: {
extensions: [".ts", ".tsx", ".js"],
alias: {}
},
target: "node",
node: {
__dirname: false,
__filename: false
},
module: {
rules: [{
test: /\.tsx?$/,
exclude: /node_modules/,
use: {
loader: "ts-loader",
options: {
transpileOnly: true
}
}
}]
},
plugins: [
new ForkTsCheckerWebpackPlugin({
typescript: {
configFile: "./src/server/tsconfig.json"
}
})
]
},
{
entry: {
client: [
path.join(__dirname, "/src/client/client.ts")
]
},
mode: debug ? "development" : "production",
output: {
path: path.join(__dirname, "/dist/web/scripts"),
filename: "[name].js",
libraryTarget: "umd",
library: "deepLinksValuePassingSample",
publicPath: "/scripts/"
},
externals: {},
devtool: debug ? "source-map" : "source-map",
resolve: {
extensions: [".ts", ".tsx", ".js"],
alias: {}
},
target: "web",
module: {
rules: [{
test: /\.tsx?$/,
exclude: /node_modules/,
use: {
loader: "ts-loader",
options: {
transpileOnly: true
}
}
}]
},
plugins: [
new webpack.EnvironmentPlugin({ PUBLIC_HOSTNAME: undefined, TAB_APP_ID: null, TAB_APP_URI: null }),
new ForkTsCheckerWebpackPlugin({
typescript: {
configFile: "./src/client/tsconfig.json"
}
}),
new Dotenv()
],
devServer: {
hot: false,
host: "localhost",
port: 9000,
allowedHosts: "all",
client: {
overlay: {
warnings: false,
errors: true
}
},
devMiddleware: {
writeToDisk: true,
stats: {
all: false,
colors: true,
errors: true,
warnings: true,
timings: true,
entrypoints: true
}
}
}
}
];
if (lint !== false) {
config[0].plugins.push(new ESLintPlugin({ extensions: ["ts", "tsx"], failOnError: false, lintDirtyModulesOnly: debug }));
config[1].plugins.push(new ESLintPlugin({ extensions: ["ts", "tsx"], failOnError: false, lintDirtyModulesOnly: debug }));
}
module.exports = config;