-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
feat: Session management #42
Conversation
9e71ab0
to
074f293
Compare
992a4f2
to
303f587
Compare
packages/server/src/assert.ts
Outdated
@@ -0,0 +1,5 @@ | |||
export function assert(condition: boolean, message: string = ''): void { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
server-side we can use node:assert
https://bun.sh/docs/runtime/nodejs-apis
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
packages/server/tsconfig.build.json
Outdated
@@ -1,4 +1,4 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I got that, that we have a separate tsconfig only for build, where we can exclude the type-checks on
node_modules, test, dist, and test files, but where do we reference it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IIIRC it's a leftover from nest's starter template. Removed, since we don't actually transpile server code.
b418c2a
to
11534c6
Compare
Closes #23