Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

typescript-config-silverwind

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typescript-config-silverwind - npm Package Compare versions

Comparing version
12.0.0
to
13.0.1
+5
-5
package.json
{
"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"
}
}

@@ -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,
}
}