Skip to content

Commit

Permalink
refactor: node
Browse files Browse the repository at this point in the history
  • Loading branch information
SALTWOOD committed Aug 27, 2024
1 parent 7156765 commit ae16917
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"description": "",
"dependencies": {
"@mongodb-js/zstd": "^1.2.0",
"@tsconfig/node21": "^21.0.3",
"@tsconfig/node20": "^20.1.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.5.0",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"extends": ["@tsconfig/node21"],
"extends": ["@tsconfig/node20"],
"compilerOptions": {
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"outDir": "dist",
"skipLibCheck": true,
"allowJs": true
"allowJs": true,
"esModuleInterop": true
},
"exclude": [
"node_modules",
Expand Down

0 comments on commit ae16917

Please sign in to comment.