-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebpack.config.js
More file actions
54 lines (46 loc) · 1.27 KB
/
webpack.config.js
File metadata and controls
54 lines (46 loc) · 1.27 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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const path = require('path');
const ROOT = path.resolve(__dirname, '');
const DESTINATION = path.resolve(__dirname, 'public');
const CONTENT = path.resolve(ROOT, 'public');
module.exports = {
context: ROOT,
entry: {
main: './src/main.ts',
},
output: {
filename: '[name].bundle.js',
path: DESTINATION,
publicPath: CONTENT,
},
resolve: {
extensions: ['.ts', '.js'],
modules: [ROOT, 'node_modules'],
},
module: {
rules: [
/****************
* PRE-LOADERS
*****************/
{
enforce: 'pre',
test: /\.js$/,
use: 'source-map-loader',
},
/****************
* LOADERS
*****************/
{
test: /\.ts$/,
exclude: /node_modules/,
use: 'awesome-typescript-loader',
},
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
],
},
devtool: 'cheap-module-source-map',
devServer: { publicPath: '/', contentBase: CONTENT, port: 3000, inline: true },
};