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
TypeScript language service plugin to override strict mode family options within an editor.
The plugin helps raise visibility of strict mode issues without breaking your build process.
The strict mode family options are strict
and the 8 related options: alwaysStrict
, strictNullChecks
, strictBindCallApply
, strictFunctionTypes
, strictPropertyInitialization
, noImplicitAny
, noImplicitThis
, and useUnknownInCatchVariables
.
Install as a dev-dependency using a package manager:
npm install --save-dev ts-ide-overrides
yarn add --save-dev ts-ide-overrides
pnpm add --save-dev ts-ide-overrides
bun add --development ts-ide-overrides
Add plugin to tsconfig.json
:
{
"compilerOptions": {
// (other options ommitted)
"plugins": [
{
"name": "ts-ide-overrides",
"overrides": {
// just an example...
"strict": true,
"noImplicitAny": false,
"useUnknownInCatchVariables": false
}
}
]
}
}
The plugin supports code comments to toggle any of the 9 options for the current file:
// @ts-ide-disable-strict @ts-ide-enable-strict-null-checks
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.