New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@ithinku/tsconfig

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ithinku/tsconfig

custom tsconfig for huangshan

latest
npmnpm
Version
0.0.7
Version published
Maintainers
1
Created
Source

@ithinku/tsconfig

Shared TypeScript configuration bases for iThinkU projects.

Provides a set of composable tsconfig.json files to ensure consistent compiler options across the monorepo.

📦 Available Configs

ConfigExtendsPurpose
base.json-The minimal base configuration (ES2022, Strict).
strict.jsonbase.jsonEnables maximum strictness (noImplicitAny, etc.).
node.jsonbase.jsonOptimized for Node.js environments.
dom.jsonbase.jsonOptimized for Browser environments (DOM lib).
bundler.jsonbase.jsonOptimized for Bundlers (Vite/Rollup) with moduleResolution: "Bundler".

Note: All specific configs also have a -strict variant (e.g., bundler-strict.json) which extends strict.json.

🚀 Usage

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"]
}

📄 License

MIT

Keywords

tsconfig

FAQs

Package last updated on 31 Dec 2025

Did you know?

Socket

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.

Install

Related posts