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

@sleepingasteroid/bluehop-tsconfig

v0.1.0

Published

Shared, strict TypeScript configuration presets.

Readme

@sleepingasteroid/bluehop-tsconfig

Strict TypeScript settings, ready to use — extend one preset and your project is configured with safe, modern defaults.

What is this?

A tsconfig.json is the file that tells TypeScript how to check and compile your code. There are a lot of options, and getting the strict, safe ones right (and remembering them for every new project) is a pain.

This package is a set of ready-made tsconfig presets. You point your project's tsconfig.json at the one that matches your project (Node, React, Next.js, etc.) using extends, and you instantly inherit a carefully chosen, strict configuration.

Why use it?

  • Strict by default — catches whole classes of bugs at compile time (see below).
  • One line of setupextends a preset instead of copying 30 options.
  • The right preset per project — Node services, React libraries, Next.js apps, and React Native all have their own.
  • Consistent across projects — update the presets here once and everyone inherits it.

Install

pnpm add -D @sleepingasteroid/bluehop-tsconfig typescript

Use

In your project's tsconfig.json, extend the preset you need:

// tsconfig.json
{
  "extends": "@sleepingasteroid/bluehop-tsconfig/nextjs.json",
  "compilerOptions": {
    "baseUrl": ".",
    "paths": { "@/*": ["./src/*"] }, // your absolute-import aliases
  },
  "include": ["src"],
}

Presets — pick the one that fits your project

| Preset | Use it for | | -------------------- | ----------------------------------------- | | base.json | The strict foundation the others build on | | node.json | Node services / CLIs (emits to dist) | | react-library.json | Bundled React component libraries | | nextjs.json | Next.js apps | | react-native.json | React Native / Expo apps |

What makes it "strict"?

Every preset turns on strict mode plus extra safety checks like noUncheckedIndexedAccess (array/object access might be undefined), exactOptionalPropertyTypes, and noImplicitOverride. These catch real mistakes that the default settings let slip through.

Tip: set baseUrl and paths in your own tsconfig.json (as shown above) to enable absolute imports like @/components/Button.


Part of the bluehop toolkit — a set of shareable project configs. Pairs naturally with bluehop-eslint-config and bluehop-prettier-config.