Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ts-ide-overrides
Advanced tools
This plugin allows you to override a subset of TypeScript `compilerOptions` when editing files in an IDE. (Specifically `strict` and its 8 associated options: `alwaysStrict`, `strictNullChecks`, `strictBindCallApply`, `strictFunctionTypes`, `strictPropert
This plugin allows you to override a subset of TypeScript compilerOptions
when editing files in an IDE. (Specifically strict
and its 8 associated options: alwaysStrict
, strictNullChecks
, strictBindCallApply
, strictFunctionTypes
, strictPropertyInitialization
, noImplicitAny
, noImplicitThis
, useUnknownInCatchVariables
.)
The purpose of the plugin is to support gradual adoption of strict rules, without breaking pre-existing build and validation processes.
Add plugin to tsconfig.json
:
{
"compilerOptions": {
// (other options ommitted)
"plugins": [
{
"name": "ts-ide-overrides",
"overrides": {
// just an example...
"strictNullChecks": true,
"noImplicitAny": true
}
}
]
}
}
The plugin supports code comments to toggle any of the 9 options for the current file:
// @ts-ide-disable-strict-null-checks
/* @ts-ide-enable-no-implicit-this */
FAQs
TypeScript language service plugin to toggle strict checks in editors
The npm package ts-ide-overrides receives a total of 0 weekly downloads. As such, ts-ide-overrides popularity was classified as not popular.
We found that ts-ide-overrides demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.