Enhance error handling in TradingService by capturing exceptions with Sentry; update TypeScript version in package.json for improved features; modify tsconfig.json to exclude unnecessary directories; add new performance benchmark entries in CSV files for better tracking of telemetry data.

This commit is contained in:
2025-12-20 15:53:16 +07:00
parent e9b4878ffa
commit 4fda65e3c2
5 changed files with 13 additions and 3 deletions

View File

@@ -66,7 +66,7 @@
"postgrator": "^8.0.0",
"query-string": "7.1.1",
"redis": "^5.8.2",
"typescript": "5.4.2",
"typescript": "^5.7.2",
"universal-perf-hooks": "1.0.1",
"viem": "^2.37.1",
"vitest": "^3.0.8",

View File

@@ -15,8 +15,9 @@
"sourceMap": false
},
"include": ["@types", "src/**/*.ts"],
"exclude": ["node_modules", "dist"],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
}
"experimentalSpecifierResolution": "node"
}
}