forked from microsoft/site-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
78 lines (72 loc) · 2.44 KB
/
webpack.config.js
File metadata and controls
78 lines (72 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
var path = require("path");
var project = require("./package.json");
const MomentLocalesPlugin = require('moment-locales-webpack-plugin');
// Export the configuration
module.exports = (env, argv) => {
var isDev = argv.mode === "development";
// Return the configuration
return {
// Main project files
entry: [
path.resolve(__dirname, project.main)
],
// Output information
output: {
path: path.resolve(__dirname, "dist"),
filename: project.name + (isDev ? "" : ".min") + ".js",
publicPath: ""
},
// Keep only 'en' locales with Moment.js
plugins: [
new MomentLocalesPlugin(),
],
// Resolve the file names
resolve: {
extensions: [".js", ".css", ".scss", ".ts"]
},
// Loaders
module: {
rules: [
// SASS to JavaScript
{
// Target the sass and css files
test: /\.s?css$/,
// Define the compiler to use
use: [
// Create style nodes from the CommonJS code
{ loader: "style-loader" },
// Translate css to CommonJS
{ loader: "css-loader" },
// Compile sass to css
{
loader: "sass-loader",
options: {
implementation: require("sass")
}
}
]
},
// Handle Image Files
{
test: /\.(jpe?g|png|gif|svg|eot|woff|ttf)$/,
loader: "url-loader"
},
// TypeScript to JavaScript
{
// Target TypeScript files
test: /\.tsx?$/,
exclude: /node_modules/,
use: [
// JavaScript (ES5) -> JavaScript (Current)
{
loader: "babel-loader",
options: { presets: ["@babel/preset-env"] }
},
// TypeScript -> JavaScript (ES5)
{ loader: "ts-loader" }
]
}
]
}
};
}