-
Notifications
You must be signed in to change notification settings - Fork 97
/
framework.webpack.config.js
56 lines (44 loc) · 1.35 KB
/
framework.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
var path = require('path');
var glob = require('glob');
var entries = {};
glob.sync("./Framework/**/*.ts").map(
function (file) {
// {key:value}の連想配列を生成
// {
// **/*.js : './src/**/*.js',
// ...
// }という形式のobjectになる
const regEx = new RegExp(`./Framework`);
const key = file.replace(regEx, '').replace('.ts', '');
entries[key] = file;
}
);
module.exports = {
// モード値を production に設定すると最適化された状態で、
// development に設定するとソースマップ有効でJSファイルが出力される
mode: 'development',
// メインとなるJavaScriptファイル(エントリーポイント)
entry: entries,
output: {
filename : '[name].js',
path: path.join(__dirname, 'Sample/TypeScript/Demo/dist/Framework/src')
},
module: {
rules: [
{
// 拡張子 .ts の場合
test: /\.ts$/,
// TypeScriptをコンパイルする
use: 'ts-loader'
}
]
},
// ソースマップを含めた状態で出力
devtool: 'inline-source-map',
// import 文で .ts ファイルを解決するため
resolve: {
extensions: [
'.ts',
]
}
}