-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.common.js
90 lines (89 loc) · 1.94 KB
/
webpack.common.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
const path = require('path');
const webpack = require('webpack');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
module.exports = {
/**
* This is the entry point for our application src/App.ts everything including an import to our scss goes through here
*/
entry: {
scripts: './variations/noto/ts/App.ts',
"scripts.min": './variations/noto/ts/App.ts'
},
externals: {
jquery: 'jQuery',
imagesloaded: 'imagesLoaded',
'jquery-hoverintent': 'jQuery',
gsap: '_gsScope',
},
optimization: {
minimize: true,
minimizer: [
new UglifyJsPlugin({
include: /\.min\.js$/,
})
],
},
plugins: [
new webpack.BannerPlugin({
banner: '@codingStandardsIgnoreFile\nphpcs:ignoreFile',
include: ['scripts.js', 'scripts.min.js']
}),
],
/**
* This is where our bundled stuff is saved and the public path is what we link to in our script tags
*/
output: {
path: path.resolve(__dirname, './assets/js'),
filename: '[name].js',
// Set this to whatever the relative asset path will be on your server
publicPath: '/'
},
/**
* Resolver helps webpack find module code that needs to be included for every bundle
*/
resolve: {
/**
* Specify which extensions we want to look at for module bundling
*/
extensions: ['.ts', '.tsx', '.js'],
},
module: {
/**
* Include our typescript and sass loaders
*/
rules: [
/**
* Loader for TSHint
*/
{
test: /\.ts$/,
enforce: 'pre',
loader: 'tslint-loader',
options: {
rules: {
configuration: require('./tslint.json')
}
}
},
/**
* Typescript loader, excludes node_modules in case any dependencies use ts
*/
{
test: /\.ts$/,
exclude: [/node_modules/],
use: [{
loader: "babel-loader",
options: {
presets: ['@babel/preset-env']
}
}, {
loader: "ts-loader",
options: {
// this will disable any type checking
transpileOnly: true
}
}]
},
]
},
};