potatopotato?

This commit is contained in:
jmosrael@gmail.com
2024-06-07 22:23:25 -07:00
parent 43bd251940
commit 05c3136c7f
12 changed files with 2471 additions and 38 deletions

2141
backend/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -19,16 +19,22 @@
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"node-polyfill-webpack-plugin": "^4.0.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@types/body-parser": "^1.19.5",
"asty-astq": "^1.14.0",
"body-parser": "^1.20.2",
"express": "^4.18.3",
"net": "^1.0.2",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.1",
"sqlite3": "^5.1.7",
"tokenizr": "^1.7.0"
"tokenizr": "^1.7.0",
"webpack-node-externals": "^3.0.0"
}
}

27
backend/webpack.config.js Normal file
View File

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