This repository was archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebpack.test.js
101 lines (96 loc) · 2.63 KB
/
webpack.test.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
91
92
93
94
95
96
97
98
99
100
101
var path = require('path');
var webpack = require('webpack');
var ROOT = path.resolve(__dirname, '.');
function root(args)
{
args = Array.prototype.slice.call(arguments, 0);
return path.join.apply(path, [ROOT].concat(args));
}
/**
* Webpack configuration
*/
module.exports = function(options)
{
return {
/**
* Source map for Karma from the help of karma-sourcemap-loader & karma-webpack
* Do not change, leave as is or it wont work.
*/
devtool: 'inline-source-map',
entry: {
'main': './tests/angular2-rest-client.spec.ts'
},
resolve:
{
extensions: ['.ts', '.js'],
modules: ['test', 'node_modules'],
},
plugins:
[
new webpack.LoaderOptionsPlugin
({
options: { verbose: true, debug: true }
})
],
module:
{
rules:
[
/**
* Source map loader support for *.js files
* Extracts SourceMaps for source files that as added as sourceMappingURL comment.
* See: https://github.com/webpack/source-map-loader
*/
{
enforce: 'pre',
test: /\.js$/,
loader: 'source-map-loader',
exclude:
[
// these packages have problems with their sourcemaps
root('node_modules/rxjs'),
root('node_modules/@angular')
],
enforce: 'pre'
},
/**
* An array of automatically applied loaders.
* IMPORTANT: The loaders here are resolved relative to the resource which they are applied to.
* This means they are not resolved relative to the configuration file.
* See: http://webpack.github.io/docs/configuration.html#module-loaders
*/
{
test: /\.ts$/,
loader: 'ts-loader',
query: {
// use inline sourcemaps for "karma-remap-coverage" reporter
// sourceMap: false,
// inlineSourceMap: true,
compilerOptions: { removeComments: true }
},
exclude: [/\.e2e\.ts$/]
},
/**
* Instruments JS files with Istanbul for subsequent code coverage reporting.
* Instrument only testing sources.
* See: https://github.com/deepsweet/istanbul-instrumenter-loader
*/
{
enforce: 'post',
test: /\.(js|ts)$/, loader: 'istanbul-instrumenter-loader',
include: root('src'),
exclude: [ /\.spec\.ts$/, /node_modules/ ]
}
]
},
node:
{
global: true,
process: false,
crypto: 'empty',
module: false,
clearImmediate: false,
setImmediate: false
}
};
}