Skip to content

Commit 6e381a3

Browse files
committed
fix: strict settings
1 parent 0e5b44e commit 6e381a3

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

libs/backend/tsconfig.lib.json

+7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
{
22
"compilerOptions": {
33
"declaration": true,
4+
"alwaysStrict": true,
45
"esModuleInterop": true,
6+
"noImplicitAny": true,
7+
"noImplicitReturns": true,
8+
"noImplicitThis": true,
9+
"noUnusedLocals": true,
10+
"noUnusedParameters": true,
11+
"noImplicitOverride": true,
512
"forceConsistentCasingInFileNames": true,
613
"module": "ES2022",
714
"moduleResolution": "node",

packages/server/src/services/Authentication/AuthSignup.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import crypto from 'crypto';
2-
import {
2+
import type {
33
IAuthSignedUpEventPayload,
44
IAuthSigningUpEventPayload,
55
IRegisterDTO,

0 commit comments

Comments
 (0)