Skip to content

Commit

Permalink
fix: Typescript OOM (microsoft/TypeScript#53087)
Browse files Browse the repository at this point in the history
Signed-off-by: Avior <[email protected]>
  • Loading branch information
Aviortheking committed May 11, 2024
1 parent 1cfcd20 commit 9bdfd2d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
Binary file modified server/bun.lockb
Binary file not shown.
56 changes: 28 additions & 28 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
{
"name": "@tcgdex/server",
"private": true,
"main": "dist/index.js",
"scripts": {
"compile": "bun compiler/index.ts",
"dev": "bun --watch src/index.ts",
"validate": "tsc --noEmit --project ./tsconfig.json",
"start": "bun src/index.ts"
},
"license": "MIT",
"dependencies": {
"@dzeio/config": "^1",
"@dzeio/object-util": "^1",
"@sentry/node": "^7",
"@tcgdex/sdk": "^2",
"apicache": "^1",
"express": "^4",
"graphql": "^15",
"graphql-http": "^1.22.1",
"ruru": "^2.0.0-beta.11"
},
"devDependencies": {
"@types/apicache": "^1",
"@types/express": "^4",
"@types/node": "^20",
"glob": "^10",
"typescript": "^5"
}
"name": "@tcgdex/server",
"private": true,
"main": "dist/index.js",
"scripts": {
"compile": "bun compiler/index.ts",
"dev": "bun --watch src/index.ts",
"validate": "tsc --noEmit --project ./tsconfig.json",
"start": "bun src/index.ts"
},
"license": "MIT",
"dependencies": {
"@dzeio/config": "^1",
"@dzeio/object-util": "^1",
"@sentry/node": "^7",
"@tcgdex/sdk": "^2",
"apicache": "^1",
"express": "^4",
"graphql": "^15",
"graphql-http": "^1.22.1",
"ruru": "^2.0.0-beta.11"
},
"devDependencies": {
"@types/apicache": "^1",
"@types/express": "^4",
"@types/node": "^20",
"glob": "^10",
"typescript": "^4"
}
}

0 comments on commit 9bdfd2d

Please sign in to comment.