first commit

This commit is contained in:
wisski 2024-04-30 14:51:28 +02:00
commit dc354cf586
37 changed files with 8225 additions and 0 deletions

51
webpack.config.js Normal file
View file

@ -0,0 +1,51 @@
const path = require('path');
const nodeExternals = require('webpack-node-externals');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = (env, argv) => {
const isDevelopment = argv.mode === 'development';
return {
entry: './src/bin/daemon.ts',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
target: 'node',
externals: [nodeExternals()],
resolve: {
extensions: ['.ejs', '.tsx', '.ts', '.js'],
modules: [
path.resolve(__dirname, 'src'),
'node_modules'
]
},
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
devtool: isDevelopment ? 'inline-source-map' : 'source-map',
watch: isDevelopment,
watchOptions: {
ignored: [
'node_modules/**',
'logs/**',
],
},
plugins: [
new CopyWebpackPlugin({
patterns: [
{ from: 'src/templates', to: 'templates' },
{ from: 'src/public', to: 'public' },
],
}),
],
// Add any other configuration options specific to development or production here
};
};