We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e5b44e commit 6e381a3Copy full SHA for 6e381a3
libs/backend/tsconfig.lib.json
@@ -1,7 +1,14 @@
1
{
2
"compilerOptions": {
3
"declaration": true,
4
+ "alwaysStrict": true,
5
"esModuleInterop": true,
6
+ "noImplicitAny": true,
7
+ "noImplicitReturns": true,
8
+ "noImplicitThis": true,
9
+ "noUnusedLocals": true,
10
+ "noUnusedParameters": true,
11
+ "noImplicitOverride": true,
12
"forceConsistentCasingInFileNames": true,
13
"module": "ES2022",
14
"moduleResolution": "node",
packages/server/src/services/Authentication/AuthSignup.ts
@@ -1,5 +1,5 @@
import crypto from 'crypto';
-import {
+import type {
IAuthSignedUpEventPayload,
IAuthSigningUpEventPayload,
IRegisterDTO,
0 commit comments