-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
60 lines (57 loc) · 1.55 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
const CopyFilePlugin = require("copy-webpack-plugin");
const WriteFilePlugin = require("write-file-webpack-plugin");
module.exports = {
mode: 'development',
devtool: 'inline-source-map',
devServer: {
contentBase: './dist',
},
// メインとなるJavaScriptファイル(エントリーポイント)
entry: "./src/main.ts",
// ファイルの出力設定
output: {
// 出力ファイルのディレクトリ名
path: `${__dirname}/dist`,
// 出力ファイル名
filename: "main.js"
},
module: {
rules: [
{
// 拡張子 .ts の場合
test: /\.ts$/,
// TypeScript をコンパイルする
use: "ts-loader"
}
]
},
// import 文で .ts ファイルを解決するため
resolve: {
extensions: [".ts", ".js"]
},
// ES5(IE11等)向けの指定(webpack 5以上で必要)
target: ["web", "es5"],
// コピープラグイン
plugins: [
new CopyFilePlugin({
patterns: [
{
from: "data/*.json",
to: "",
context: 'src'
},
{
from: "*.html",
to: "",
context: 'src'
},
{
from: "*.css",
to: "",
context: 'src'
}
]
}),
new WriteFilePlugin()
]
};