FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
angular-google-maps/webpack.config.js at master · usecode/angular-google-maps · GitHub
usecode
/
angular-google-maps
Public
forked from
sebholstein/angular-google-maps
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
angular-google-maps
/
webpack.config.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
134 lines (116 loc) · 3.84 KB
Breadcrumbs
angular-google-maps
/
webpack.config.js
Copy path
File metadata and controls
134 lines (116 loc) · 3.84 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
// original source code from: https://github.com/preboot/angular2-webpack/blob/master/webpack.config.js
// Helper: root() is defined at the bottom
var
path
=
require
(
'path'
)
;
var
webpack
=
require
(
'webpack'
)
;
// Webpack Plugins
var
HtmlWebpackPlugin
=
require
(
'html-webpack-plugin'
)
;
var
CopyWebpackPlugin
=
require
(
'copy-webpack-plugin'
)
;
/**
* Env
* Get npm lifecycle event to identify the environment
*/
var
ENV
=
process
.
env
.
npm_lifecycle_event
;
var
isTestWatch
=
ENV
===
'test-watch'
;
var
isTest
=
true
;
var
isProd
=
false
;
module
.
exports
=
function
makeWebpackConfig
(
)
{
/**
* Config
* Reference: http://webpack.github.io/docs/configuration.html
* This is the object where all configuration gets set
*/
var
config
=
{
}
;
/**
* Devtool
* Reference: http://webpack.github.io/docs/configuration.html#devtool
* Type of sourcemap to use per build type
*/
if
(
isProd
)
{
config
.
devtool
=
'source-map'
;
}
else
if
(
isTest
)
{
config
.
devtool
=
'inline-source-map'
;
}
else
{
config
.
devtool
=
'eval-source-map'
;
}
config
.
entry
=
{
'test'
:
'./karma-test-shim.js'
// our angular app
}
;
/**
* Output
* Reference: http://webpack.github.io/docs/configuration.html#output
*/
config
.
output
=
{
}
;
/**
* Resolve
* Reference: http://webpack.github.io/docs/configuration.html#resolve
*/
config
.
resolve
=
{
// only discover files that have those extensions
extensions
:
[
'.ts'
,
'.js'
,
'.json'
,
'.css'
,
'.scss'
,
'.html'
]
,
}
;
/**
* Loaders
* Reference: http://webpack.github.io/docs/configuration.html#module-loaders
* List: http://webpack.github.io/docs/list-of-loaders.html
* This handles most of the magic responsible for converting modules
*/
config
.
module
=
{
rules
:
[
// Support for .ts files.
// all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
{
test
:
/
\.
t
s
x
?
$
/
,
loader
:
'ts-loader'
}
,
// copy those assets to output
{
test
:
/
\.
(
p
n
g
|
j
p
e
?
g
|
g
i
f
|
s
v
g
|
w
o
f
f
|
w
o
f
f
2
|
t
t
f
|
e
o
t
|
i
c
o
)
(
\?
v
=
[
0
-
9
]
\.
[
0
-
9
]
\.
[
0
-
9
]
)
?
$
/
,
loader
:
'file-loader?name=fonts/[name].[hash].[ext]?'
}
,
// Support for *.json files.
{
test
:
/
\.
j
s
o
n
$
/
,
loader
:
'json-loader'
}
,
// all css required in src/app files will be merged in js files
{
test
:
/
\.
c
s
s
$
/
,
include
:
root
(
'packages'
,
'app'
)
,
loader
:
'raw-loader!postcss-loader'
}
,
// support for .html as raw text
// todo: change the loader to something that adds a hash to images
{
test
:
/
\.
h
t
m
l
$
/
,
loader
:
'raw-loader'
,
exclude
:
root
(
'packages'
,
'public'
)
}
]
}
;
/**
* Plugins
* Reference: http://webpack.github.io/docs/configuration.html#plugins
* List: http://webpack.github.io/docs/list-of-plugins.html
*/
config
.
plugins
=
[
// Define env variables to help with builds
// Reference: https://webpack.github.io/docs/list-of-plugins.html#defineplugin
new
webpack
.
DefinePlugin
(
{
// Environment helpers
'process.env'
:
{
ENV
:
JSON
.
stringify
(
ENV
)
}
}
)
,
// Workaround needed for angular 2 angular/angular#11580
new
webpack
.
ContextReplacementPlugin
(
// The (\\|\/) piece accounts for path separators in *nix and Windows
/
a
n
g
u
l
a
r
(
\\
|
\/
)
c
o
r
e
(
\\
|
\/
)
(
e
s
m
(
\\
|
\/
)
s
r
c
|
s
r
c
)
(
\\
|
\/
)
l
i
n
k
e
r
/
,
root
(
'./packages'
)
// location of your src
)
]
;
/**
* Dev server configuration
* Reference: http://webpack.github.io/docs/configuration.html#devserver
* Reference: http://webpack.github.io/docs/webpack-dev-server.html
*/
config
.
devServer
=
{
contentBase
:
'./packages/public'
,
historyApiFallback
:
true
,
quiet
:
true
,
stats
:
'minimal'
// none (or false), errors-only, minimal, normal (or true) and verbose
}
;
return
config
;
}
(
)
;
// Helper functions
function
root
(
args
)
{
args
=
Array
.
prototype
.
slice
.
call
(
arguments
,
0
)
;
return
path
.
join
.
apply
(
path
,
[
__dirname
]
.
concat
(
args
)
)
;
}
Back
|
FazBrowse Home
|
New Git URL