Fixed failing compilation error when running project fresh

This commit is contained in:
GeorgeWebberley 2026-03-01 21:12:51 +01:00
parent b73e4c7d51
commit 822c7ceae2
2 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@
"private": true, "private": true,
"license": "UNLICENSED", "license": "UNLICENSED",
"scripts": { "scripts": {
"build": "nest build && cp src/generated/prisma/package.json dist/src/generated/prisma/package.json", "build": "nest build",
"start": "nest start", "start": "nest start",
"start:dev": "nest start --watch", "start:dev": "nest start --watch",
"start:prod": "npm run build && nest start", "start:prod": "npm run build && nest start",
@ -15,6 +15,7 @@
}, },
"dependencies": { "dependencies": {
"@apollo/server": "^5.4.0", "@apollo/server": "^5.4.0",
"@as-integrations/express5": "^1.1.2",
"@aws-sdk/client-s3": "^3.1000.0", "@aws-sdk/client-s3": "^3.1000.0",
"@aws-sdk/s3-request-presigner": "^3.1000.0", "@aws-sdk/s3-request-presigner": "^3.1000.0",
"@langchain/core": "^1.1.29", "@langchain/core": "^1.1.29",

View file

@ -1,8 +1,7 @@
{ {
"compilerOptions": { "compilerOptions": {
"module": "nodenext", "module": "commonjs",
"moduleResolution": "nodenext", "moduleResolution": "node",
"resolvePackageJsonExports": true,
"esModuleInterop": true, "esModuleInterop": true,
"isolatedModules": true, "isolatedModules": true,
"declaration": true, "declaration": true,