typescript-config-silverwind
Advanced tools
+5
-5
| { | ||
| "name": "typescript-config-silverwind", | ||
| "version": "12.0.0", | ||
| "version": "13.0.1", | ||
| "description": "Typescript configuration", | ||
@@ -15,8 +15,8 @@ "author": "silverwind <me@silverwind.io>", | ||
| "devDependencies": { | ||
| "eslint": "9.37.0", | ||
| "eslint-config-silverwind": "105.2.3", | ||
| "eslint": "9.39.1", | ||
| "eslint-config-silverwind": "111.0.5", | ||
| "typescript": "5.9.3", | ||
| "updates": "16.8.0", | ||
| "versions": "13.2.1" | ||
| "updates": "16.9.1", | ||
| "versions": "14.0.2" | ||
| } | ||
| } |
+11
-10
@@ -24,2 +24,3 @@ { | ||
| "module": "nodenext", | ||
| "moduleResolution": "nodenext", | ||
| "allowArbitraryExtensions": true, | ||
@@ -36,3 +37,3 @@ "allowImportingTsExtensions": true, | ||
| "jsx": "react-jsx", | ||
| "lib": ["dom", "dom.iterable", "dom.asynciterable", "esnext"], | ||
| "lib": ["DOM", "DOM.Iterable", "DOM.AsyncIterable", "ESNext"], | ||
| "libReplacement": false, | ||
@@ -46,3 +47,2 @@ "noEmit": true, | ||
| "skipLibCheck": true, | ||
| "strict": false, | ||
| "stripInternal": true, | ||
@@ -53,16 +53,17 @@ "verbatimModuleSyntax": true, | ||
| // strict | ||
| "allowUnreachableCode": false, | ||
| "allowUnusedLabels": false, | ||
| "alwaysStrict": true, | ||
| "strictNullChecks": false, | ||
| "noFallthroughCasesInSwitch": true, | ||
| "noImplicitAny": true, | ||
| "noImplicitReturns": true, | ||
| "noImplicitThis": true, | ||
| "strict": false, | ||
| "strictBindCallApply": true, | ||
| "strictBuiltinIteratorReturn": true, | ||
| "strictFunctionTypes": true, | ||
| "strictPropertyInitialization": false, // depens on strictNullChecks | ||
| "noImplicitThis": true, | ||
| "noImplicitAny": false, // TODO, | ||
| "strictNullChecks": true, | ||
| "strictPropertyInitialization": true, | ||
| "useUnknownInCatchVariables": false, | ||
| "allowUnreachableCode": false, | ||
| "allowUnusedLabels": false, | ||
| "noFallthroughCasesInSwitch": true, | ||
| "noImplicitReturns": true, | ||
| } | ||
| } |
64
1.59%4383
-0.14%