Initial project scaffolding
This commit is contained in:
77
packages/dev-tools-pages/webpack.config.js
Normal file
77
packages/dev-tools-pages/webpack.config.js
Normal file
@@ -0,0 +1,77 @@
|
||||
const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
const TerserPlugin = require('terser-webpack-plugin');
|
||||
const childProcess = require('child_process');
|
||||
|
||||
const config = {
|
||||
entry: ['./ts/index.tsx'],
|
||||
output: {
|
||||
path: path.join(__dirname, '/public'),
|
||||
filename: 'bundle.js',
|
||||
chunkFilename: 'bundle-[name].js',
|
||||
publicPath: '/',
|
||||
},
|
||||
devtool: 'source-map',
|
||||
resolve: {
|
||||
modules: [path.join(__dirname, '/ts'), 'node_modules'],
|
||||
extensions: ['.ts', '.tsx', '.js', '.jsx', '.json'],
|
||||
alias: {
|
||||
ts: path.join(__dirname, '/ts'),
|
||||
less: path.join(__dirname, '/less'),
|
||||
},
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.js$/,
|
||||
loader: 'source-map-loader',
|
||||
exclude: [
|
||||
// instead of /\/node_modules\//
|
||||
path.join(process.cwd(), 'node_modules'),
|
||||
path.join(process.cwd(), '../..', 'node_modules'),
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
loader: 'awesome-typescript-loader',
|
||||
},
|
||||
{
|
||||
test: /\.md$/,
|
||||
use: 'raw-loader',
|
||||
},
|
||||
],
|
||||
},
|
||||
optimization: {
|
||||
minimizer: [
|
||||
new TerserPlugin({
|
||||
sourceMap: true,
|
||||
}),
|
||||
],
|
||||
},
|
||||
devServer: {
|
||||
port: 3572,
|
||||
disableHostCheck: true,
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = (_env, argv) => {
|
||||
let plugins = [];
|
||||
if (argv.mode === 'development') {
|
||||
config.mode = 'development';
|
||||
} else {
|
||||
config.mode = 'production';
|
||||
plugins = plugins.concat([
|
||||
new webpack.DefinePlugin({
|
||||
'process.env': {
|
||||
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
|
||||
},
|
||||
}),
|
||||
]);
|
||||
}
|
||||
console.log('i 「atl」: Mode: ', config.mode);
|
||||
|
||||
config.plugins = plugins;
|
||||
console.log('i 「atl」: Plugin Count: ', config.plugins.length);
|
||||
|
||||
return config;
|
||||
};
|
Reference in New Issue
Block a user