Skip to content

Commit 43f9e09

Browse files
committed
conf: enable type checking flags
1 parent 7aef553 commit 43f9e09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@
9393
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
9494
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
9595
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
96-
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
97-
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
96+
"noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
97+
"noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
9898
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
9999
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
100100
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
101101
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
102-
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
102+
"noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
103103
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
104104
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
105105
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */

0 commit comments

Comments
 (0)