2019-02-28 21:21:18 -08:00
|
|
|
const path = require('path');
|
2021-07-06 17:04:02 -07:00
|
|
|
const { merge } = require('webpack-merge');
|
2019-02-28 21:21:18 -08:00
|
|
|
|
2021-06-25 15:38:35 -07:00
|
|
|
const baseConfig = {
|
2019-02-28 21:21:18 -08:00
|
|
|
devtool: 'source-map',
|
2021-03-26 21:21:45 +01:00
|
|
|
mode: 'development',
|
2020-01-02 11:11:04 -08:00
|
|
|
module: {
|
|
|
|
rules: [
|
2020-10-18 01:53:33 +02:00
|
|
|
{
|
2022-05-10 06:52:06 -07:00
|
|
|
test: /\.tsx?$/i,
|
2020-10-18 01:53:33 +02:00
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: 'ts-loader'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
exclude: /node_modules/,
|
2021-06-13 17:06:16 -07:00
|
|
|
},
|
2022-06-03 15:30:39 -07:00
|
|
|
{
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
|
|
|
'style-loader',
|
|
|
|
{
|
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
import: false,
|
2022-06-04 11:08:18 -07:00
|
|
|
modules: {
|
|
|
|
localIdentName: '[path][name]__[local]',
|
|
|
|
}
|
2022-06-03 15:30:39 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
include: /\.module\.css$/
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
|
|
|
'style-loader',
|
|
|
|
'css-loader'
|
|
|
|
],
|
|
|
|
exclude: /\.module\.css$/
|
2023-01-11 18:14:44 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.module\.s(a|c)ss$/,
|
|
|
|
use: [
|
|
|
|
'style-loader',
|
|
|
|
{
|
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
import: false,
|
|
|
|
modules: {
|
|
|
|
localIdentName: '[path][name]__[local]',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'sass-loader',
|
|
|
|
}
|
|
|
|
],
|
2022-06-03 15:30:39 -07:00
|
|
|
}
|
2020-01-02 11:11:04 -08:00
|
|
|
],
|
|
|
|
},
|
2021-07-06 17:04:02 -07:00
|
|
|
output: {
|
|
|
|
publicPath: 'dist/',
|
|
|
|
path: path.resolve('dist/'),
|
|
|
|
filename: '[name].bundle.js',
|
|
|
|
chunkFilename: '[name].bundle.js',
|
|
|
|
},
|
2020-10-18 01:53:33 +02:00
|
|
|
resolve: {
|
2022-05-10 06:52:06 -07:00
|
|
|
extensions: ['.ts', '.tsx', '.js'],
|
|
|
|
alias: {
|
|
|
|
js: path.resolve(__dirname, 'js/'),
|
|
|
|
json: path.resolve(__dirname, 'json/'),
|
|
|
|
}
|
2020-10-18 01:53:33 +02:00
|
|
|
},
|
2019-02-28 21:21:18 -08:00
|
|
|
};
|
2021-06-25 15:38:35 -07:00
|
|
|
|
2021-07-06 17:04:02 -07:00
|
|
|
const appConfig = merge(baseConfig,
|
2021-06-25 15:38:35 -07:00
|
|
|
{
|
|
|
|
entry: {
|
2021-12-22 10:37:21 -08:00
|
|
|
main2: path.resolve('js/entry2.ts'),
|
2022-05-10 06:52:06 -07:00
|
|
|
main2e: path.resolve('js/entry2e.ts'),
|
|
|
|
preact: path.resolve('js/entry.tsx'),
|
2021-06-25 15:38:35 -07:00
|
|
|
},
|
|
|
|
output: {
|
|
|
|
library: {
|
|
|
|
name: 'Apple2',
|
|
|
|
type: 'umd',
|
|
|
|
export: 'Apple2',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
devServer: {
|
|
|
|
compress: true,
|
|
|
|
static: {
|
|
|
|
watch: {
|
|
|
|
ignored: /(node_modules|test|\.git)/
|
|
|
|
},
|
|
|
|
directory: __dirname,
|
|
|
|
},
|
2021-07-04 08:12:12 -07:00
|
|
|
devMiddleware: {
|
2021-07-08 08:15:55 -07:00
|
|
|
publicPath: '/dist/',
|
2021-06-25 15:38:35 -07:00
|
|
|
},
|
|
|
|
},
|
2021-07-06 17:04:02 -07:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
const workletConfig = merge(baseConfig,
|
2021-06-25 15:38:35 -07:00
|
|
|
{
|
2023-05-28 16:24:47 -07:00
|
|
|
target: 'webworker',
|
2021-06-25 15:38:35 -07:00
|
|
|
entry: {
|
|
|
|
audio_worker: path.resolve('js/ui/audio_worker.ts')
|
|
|
|
},
|
|
|
|
output: {
|
2021-07-06 17:04:02 -07:00
|
|
|
globalObject: 'globalThis',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
const workerConfig = merge(baseConfig,
|
|
|
|
{
|
2023-05-28 16:24:47 -07:00
|
|
|
target: 'webworker',
|
2021-07-06 17:04:02 -07:00
|
|
|
entry: {
|
|
|
|
format_worker: path.resolve('workers/format.worker.ts')
|
|
|
|
},
|
|
|
|
output: {
|
2021-06-25 15:38:35 -07:00
|
|
|
globalObject: 'globalThis',
|
|
|
|
},
|
|
|
|
},
|
2021-07-06 17:04:02 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
exports.default = [appConfig, workletConfig, workerConfig];
|