typescript-config-silverwind
Advanced tools
+2
-2
| { | ||
| "name": "typescript-config-silverwind", | ||
| "version": "13.0.2", | ||
| "version": "14.0.0", | ||
| "description": "Typescript configuration", | ||
@@ -16,3 +16,3 @@ "author": "silverwind <me@silverwind.io>", | ||
| "eslint": "9.39.1", | ||
| "eslint-config-silverwind": "111.0.5", | ||
| "eslint-config-silverwind": "111.0.8", | ||
| "typescript": "5.9.3", | ||
@@ -19,0 +19,0 @@ "updates": "16.9.1", |
+8
-8
@@ -48,19 +48,19 @@ { | ||
| "pretty": true, | ||
| // strict | ||
| "allowUnusedLabels": false, | ||
| "allowUnreachableCode": false, | ||
| "allowUnusedLabels": false, | ||
| "alwaysStrict": true, | ||
| "noFallthroughCasesInSwitch": true, | ||
| "noImplicitAny": true, | ||
| "noImplicitReturns": true, | ||
| "noImplicitThis": true, | ||
| // strict | ||
| "strict": false, | ||
| "alwaysStrict": true, | ||
| "strictNullChecks": true, | ||
| "strictBindCallApply": true, | ||
| "strictBuiltinIteratorReturn": true, | ||
| "strictFunctionTypes": true, | ||
| "strictNullChecks": true, | ||
| "strictPropertyInitialization": false, // TODO: true, it's annoying because throws when strictNullChecks is false | ||
| "strictPropertyInitialization": true, | ||
| "noImplicitAny": true, | ||
| "noImplicitThis": true, | ||
| "useUnknownInCatchVariables": false, | ||
| } | ||
| } |
4383
-1.7%