-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
48 lines (45 loc) · 1.17 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
/* global __dirname, require, module */
const http = require('http')
const webpack = require('webpack')
const path = require('path')
const getEnv = (env) => (env.dev ? 'development' : 'production')
const isDev = (env) => getEnv(env) === 'development'
const createConfig = (env) => ({
mode: getEnv(env),
entry: __dirname + '/src/index.ts',
devtool: 'source-map',
watch: isDev(env),
output: {
path: isDev(env) ? path.join(__dirname, 'server/plugins/grakkit') : path.join(__dirname, 'dist'),
filename: 'index.js',
library: 'test',
libraryTarget: 'commonjs',
umdNamedDefine: true,
globalObject: "typeof self !== 'undefined' ? self : this",
},
module: {
rules: [
{
test: /(\.js|\.ts)$/,
use: {
loader: 'babel-loader',
},
exclude: /(node_modules|bower_components)/,
},
],
},
externals: {
http: 'http',
// '@grakkit/server': '@grakkit/server',
'@grakkit/server-classes': '@grakkit/server-classes',
},
resolve: {
extensions: ['.json', '.js', '.ts'],
},
plugins: [
new webpack.EnvironmentPlugin({
NODE_ENV: getEnv(env),
}),
],
})
module.exports = createConfig