dyna-config-handler
Version:
Simplifies the configuration handling in json files for node-js applications
41 lines (37 loc) • 1.19 kB
JavaScript
// help: http://webpack.github.io/docs/configuration.html
// help: https://webpack.github.io/docs/webpack-dev-server.html#webpack-dev-server-cli
const fs = require('fs');
const path = require('path');
const webpack = require('webpack');
const loaders = require('./webpack.loaders');
const plugins = require('./webpack.plugins');
const config = {
target: 'web', // help: https://webpack.github.io/docs/configuration.html#target
entry: [
// inject some code in order to enable the auto refresh of the browse in case of a file's change
'babel-polyfill',
'webpack-dev-server/client?http://localhost:8027',
// the entry application code
path.resolve(__dirname, 'dev/index.ts')
],
externals: [],
output: {
path: path.resolve(__dirname, 'debug-ground/debug-dev-on-browser'),
filename: 'debug-dev-browser.js'
},
resolve: {
alias: {},
extensions: [".webpack.js", ".web.js", ".ts", ".tsx", ".js", ".jsx"]
},
module: {
loaders: loaders
},
node: {
// universal app? place here your conditional imports for node env
fs: "empty",
path: "empty",
child_process: "empty",
},
plugins: plugins,
};
module.exports = config;