This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
78 lines (76 loc) · 1.96 KB
/
webpack.config.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
var webpack = require('webpack');
var fs = require('fs');
var path = require('path');
function getSubDirectories(aSrcPath) {
return fs.readdirSync(aSrcPath).filter(function(aFile) {
return fs.statSync(path.resolve(path.join(aSrcPath, aFile))).isDirectory();
}).map(function (aSubDirectory) {
return path.resolve(path.join(aSrcPath, aSubDirectory));
});
}
module.exports = {
context: path.resolve('./src/app'),
entry: './app.ts',
output: {
path: path.resolve('./www'),
filename: 'app.js',
},
resolve: {
root: [path.resolve('./src/app')]
.concat(getSubDirectories('./src/libs'))
.concat(getSubDirectories('./src/modules')),
extensions: ['', '.js', '.ts', '.stache', '.json']
},
resolveLoader: {
root: [
path.resolve('.'),
path.resolve('./src')
],
modulesDirectories: [
'web_loaders',
'web_modules',
'node_loaders',
'node_modules',
'webpack-loaders'
]
},
plugins: [
new webpack.optimize.DedupePlugin(),
],
module: {
loaders: [
{
test: /\.ts$/,
loader: 'ts-loader'
},
{
test: /\.stache$/,
loaders: [
'raw-loader',
'trim-template-loader'
]
},
{
test: /\.json$/,
loaders: [
'base64-loader',
'minify-json-loader'
]
}
],
postLoaders: [
{
test: /\.ts$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: ['es2015'],
compact: false
}
}
]
},
stats: {
colors: true
}
};