dyna-config-handler
Version:
Simplifies the configuration handling in json files for node-js applications
40 lines (35 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 nodeExternals = require('webpack-node-externals');
const loaders = require('./webpack.loaders');
const plugins = require('./webpack.plugins');
console.log('DEBUG with devtools in nodeJs ');
console.log('WARNING: you should run the `npm run debug-tests-build` in order to debug your latest changes!');
const config = {
target: 'node', // help: https://webpack.github.io/docs/configuration.html#target
entry: [
'babel-polyfill',
// the entry application code
path.resolve(__dirname, 'dev/index.ts')
],
externals: [nodeExternals()], // in order to ignore all modules in node_modules folder
output: {
path: path.resolve(__dirname, 'debug-ground/debug-dev-on-nodejs'),
filename: 'index.js'
},
resolve: {
alias: {},
extensions: [".webpack.js", ".web.js", ".ts", ".tsx", ".js", ".jsx"]
},
module: {
loaders: loaders
},
node: {
fs: "empty"
},
plugins: plugins,
};
module.exports = config;