Skip to content

Commit fbb3e7d

Browse files
authored
chore: partially activate strict mode (#651)
1 parent 15d4e2e commit fbb3e7d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

tsconfig.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@
44
"outDir": "dist",
55
"declaration": true,
66
"esModuleInterop": true,
7-
"allowJs": true
7+
"allowJs": true,
8+
"alwaysStrict": true,
9+
// "strictNullChecks": true,
10+
// "strictBindCallApply": true,
11+
"strictFunctionTypes": true,
12+
// "strictPropertyInitialization": true,
13+
// "noImplicitAny": true,
14+
// "noImplicitThis": true,
15+
"useUnknownInCatchVariables": true
816
},
917
"include": ["src/**/*"],
1018
"exclude": ["node_modules"]

0 commit comments

Comments
 (0)