forked from obniz/obniz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
51 lines (50 loc) · 1.34 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
// output.pathに絶対パスを指定する必要があるため、pathモジュールを読み込んでおく
const path = require('path');
const nodeExternals = require('webpack-node-externals');
module.exports = {
// モードの設定、v4系以降はmodeを指定しないと、webpack実行時に警告が出る
mode: 'development',
// エントリーポイントの設定
entry: './obniz/index.js',
// entry: './test.js',
// 出力の設定
output: {
// 出力するファイル名
filename: 'obniz.js',
// 出力先のパス(v2系以降は絶対パスを指定する必要がある)
path: path.join(__dirname),
pathinfo: false,
library: 'Obniz',
},
devtool: 'none',
module: {
rules: [
{
test: /\.(yml|yaml)$/,
use: [
{
loader: require.resolve('json-loader'),
},
{
// loader: require.resolve('yaml-loader')
loader: require.resolve(
'./obniz/libs/webpackReplace/yaml-schema-loader'
),
},
],
},
],
},
externals: [
nodeExternals({
modulesFromFile: {
include: ['devDependencies'],
},
}),
],
stats: {
warningsFilter: [
/(?!require function is used in a way in which dependencies cannot be statically extracted)/,
],
},
};