add vault and mongo db with postgres in comments

This commit is contained in:
iamBadgers
2025-06-06 18:07:24 -07:00
parent 273cbf1558
commit 02007ffc94
11 changed files with 7851 additions and 3 deletions

30
vault/webpack.config.js Normal file
View File

@@ -0,0 +1,30 @@
const path = require('path');
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin")
const nodeExternals = require('webpack-node-externals');
module.exports = {
mode: 'production',
entry: './src/app.ts',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
}, node: {
__dirname: false
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
output: {
filename: 'app.js',
path: path.resolve(__dirname, './dist'),
},
plugins: [
new NodePolyfillPlugin(),
],
externals: [nodeExternals()],
};