Skip to content

Commit

Permalink
fix: strict settings
Browse files Browse the repository at this point in the history
  • Loading branch information
benpsnyder committed May 14, 2024
1 parent 174b54a commit 7d83afa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions libs/backend/tsconfig.lib.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{
"compilerOptions": {
"declaration": true,
"alwaysStrict": true,
"esModuleInterop": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitOverride": true,
"forceConsistentCasingInFileNames": true,
"module": "ES2022",
"moduleResolution": "node",
Expand Down
2 changes: 1 addition & 1 deletion packages/server/src/services/Authentication/AuthSignup.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import crypto from 'crypto';
import {
import type {
IAuthSignedUpEventPayload,
IAuthSigningUpEventPayload,
IRegisterDTO,
Expand Down

0 comments on commit 7d83afa

Please sign in to comment.