npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tcd-devkit/tsconfig

v0.1.3

Published

Shareable base TypeScript configurations (tsconfig.json) for various project types within the @tcd-devkit ecosystem.

Readme

@tcd-devkit/tsconfig

This package provides a collection of shareable TypeScript configurations (tsconfig.json files) for use across various project types within the @tcd-devkit ecosystem. These base configurations help ensure consistency and apply best practices for TypeScript compilation.

Available Configurations

This package includes the following TypeScript configurations:

  • @tcd-devkit/tsconfig/base (tsconfig.base.json): A foundational configuration with common compiler options suitable for most JavaScript/TypeScript projects. Other configurations typically extend this.
  • @tcd-devkit/tsconfig/build (tsconfig.build.json): Tailored for build processes, often used for compiling libraries or applications. It might include stricter checks or specific output settings.
  • @tcd-devkit/tsconfig/lib (tsconfig.lib.json): Specifically designed for building TypeScript libraries, focusing on declaration file generation and module compatibility.
  • @tcd-devkit/tsconfig/next (tsconfig.next.json): Optimized for Next.js projects, incorporating Next.js specific compiler options and type expectations.

Installation

This package is typically installed as a development dependency.

# Using npm
npm install -D @tcd-devkit/tsconfig

# Using yarn
yarn add -D @tcd-devkit/tsconfig

# Using pnpm
pnpm add -D @tcd-devkit/tsconfig

Usage

In your project's tsconfig.json, you can extend one of the configurations provided by this package using the extends property.

Example: Using the base configuration

// tsconfig.json
{
  "extends": "@tcd-devkit/tsconfig/base",
  "compilerOptions": {
    // Your project-specific compiler options can override or add to the base
    "outDir": "dist",
    "rootDir": "src"
  },
  "include": ["src/**/*"],
  "exclude": ["node_modules", "dist"]
}

Example: Using the Next.js configuration

// tsconfig.json (for a Next.js project)
{
  "extends": "@tcd-devkit/tsconfig/next",
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
  "exclude": ["node_modules"]
}

Choose the configuration that best suits your project type and extend it as needed.

Viewing Configuration Details

To see the exact compiler options set by each configuration, you can either:

  1. View the source tsconfig.*.json files directly within this package (e.g., in node_modules/@tcd-devkit/tsconfig/).
  2. Run tsc --showConfig in a project that extends one of these configurations to see the fully resolved compiler options.

License

MIT © Nace Logar