-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.dev.js
99 lines (88 loc) · 2.88 KB
/
webpack.config.dev.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
const path = require('path');
const outDir = path.resolve(__dirname, "dist", "js");
const webpack = require('webpack');
//const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
cache: false,
// モード値を production に設定すると最適化された状態で、
// development に設定するとソースマップ有効でJSファイルが出力される
mode: 'development',
// メインとなるJavaScriptファイル(エントリーポイント)
// 注) 'src/ts/Main.ts' では認識しない。'./src/ts/Main.ts' とする。
entry: [
'./src/js/polyfills.js',
'./src/js/libraries.js'
],
// ファイルの出力設定
output: {
// 出力ファイルのディレクトリ名
path: outDir,
// 出力ファイル名
filename: 'libonly.js'
},
module: {
rules: [
// CSS
{
test: /\.css/,
//loader: ExtractTextPlugin.extract("css-loader")
use: [
'style-loader',
{
loader: 'css-loader',
options: {
// CSS内のurl()メソッドの取り込み可否
url: true,
// ソースマップを有効にする
sourceMap: true
}
}
]
},
// WebFont
{
test: /\.(woff|woff2|eot|ttf|svg)$/,
loader: 'file-loader?name=../font/[name].[ext]'
},
// Image
{
test: /\.(jpg|jpeg|png|gif)$/,
loader: 'file-loader?name=../img/[name].[ext]'
}
//// TypeScript
//// 予めtscでコンパイルしておく。
//{
// test: /\.ts$|\.tsx$/,
// loader: 'ts-loader',
// options: {
// configFile: path.resolve(__dirname, "tsconfig.commonjs.json")
// }
//}
]
},
resolve: {
// node_modules をモジュールのルートディレクトリに追加
modules: [
'src/js/lib',
'node_modules'
],
extensions: [
'.js',
'.ts'
],
alias: {
// Admin-LTE側のJQueryを読ませる。
'jquery': 'admin-lte/node_modules/jquery/dist/jquery.js',
'vue$': 'vue/dist/vue.esm.js',
// 手を入れたバージョンを読ませる。
'jquery-slimscroll': 'jquery-slimscroll/jquery.slimscroll.js'
}
},
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery'
})
],
devtool: 'inline-source-map'
};