
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@ithinku/tsconfig
Advanced tools
Shared TypeScript configuration bases for iThinkU projects.
Provides a set of composable tsconfig.json files to ensure consistent compiler options across the monorepo.
| Config | Extends | Purpose |
|---|---|---|
base.json | - | The minimal base configuration (ES2022, Strict). |
strict.json | base.json | Enables maximum strictness (noImplicitAny, etc.). |
node.json | base.json | Optimized for Node.js environments. |
dom.json | base.json | Optimized for Browser environments (DOM lib). |
bundler.json | base.json | Optimized for Bundlers (Vite/Rollup) with moduleResolution: "Bundler". |
Note: All specific configs also have a
-strictvariant (e.g.,bundler-strict.json) which extendsstrict.json.
Install the package:
npm install -D @ithinku/tsconfig
Extend it in your tsconfig.json:
{
"extends": "@ithinku/tsconfig/bundler-strict",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"
},
"include": ["src"]
}
MIT
FAQs
custom tsconfig for huangshan
We found that @ithinku/tsconfig demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.