forked from microsoft/roosterjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
79 lines (76 loc) · 2.26 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
const path = require('path');
const devServerPort = 3000;
const externalMap = new Map([
['react', 'React'],
['react-dom', 'ReactDOM'],
[/^office-ui-fabric-react(\/.*)?$/, 'FluentUIReact'],
[/^@fluentui(\/.*)?$/, 'FluentUIReact'],
]);
module.exports = {
entry: path.join(__dirname, './demo/scripts/index.ts'),
devtool: 'source-map',
output: {
filename: 'demo.js',
path: __dirname + '/scripts',
publicPath: '/scripts/',
sourceMapFilename: '[name].map',
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.svg', '.scss', '.'],
modules: ['./demo/scripts', 'packages', './node_modules'],
},
mode: 'development',
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
options: {
compilerOptions: {
downlevelIteration: true,
importHelpers: true,
},
},
},
{
test: /\.svg$/,
loader: 'url-loader',
options: {
mimetype: 'image/svg+xml',
esModule: false,
},
},
{
test: /\.scss$/,
use: [
'@microsoft/loader-load-themed-styles',
{
loader: 'css-loader',
options: {
modules: true,
},
},
'sass-loader',
],
},
],
},
externals: function ({ request }, callback) {
for (const [key, value] of externalMap) {
if (key instanceof RegExp && key.test(request)) {
return callback(null, request.replace(key, value));
} else if (request === key) {
return callback(null, value);
}
}
callback();
},
stats: 'minimal',
devServer: {
host: '0.0.0.0', // This makes the server public so that others can test by http://hostname ...
port: devServerPort,
open: true,
openPage: '',
public: 'localhost:' + devServerPort,
},
};