forked from DxCx/ts-xlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.test.js
46 lines (42 loc) · 993 Bytes
/
webpack.config.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
var webpack = require('webpack');
var path = require('path');
var fs = require('fs');
/* small hack to build map of node modules used for excluding from webpack */
var nodeModules = {};
fs.readdirSync('node_modules')
.filter(function (x) {
return ['.bin'].indexOf(x) === -1;
})
.forEach(function (mod) {
nodeModules[mod] = 'commonjs ' + mod;
});
/* helper function to get into build directory */
var libPath = function(name) {
if ( null === name ) {
return path.join(__dirname, 'build');
}
return path.join(__dirname, 'build', name);
}
module.exports = {
entry: './test/test.ts',
target: 'node',
output: {
filename: libPath('test.js')
},
resolve: {
extensions: ['', '.ts', '.js']
},
module: {
preLoaders: [{ test: /\.ts$/, loader: 'tslint' }],
loaders: [{ test: /\.ts$/, loader: 'babel-loader!ts-loader' }]
},
tslint: {
emitErrors: true,
failOnHint: true
},
externals: nodeModules,
ts: {
compiler: 'typescript',
configFileName: 'tsconfig.test.json'
}
}