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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@uniai-fe/tsconfig

v0.1.2

Published

TypeScript Config for UNIAI FE Projects

Downloads

425

Readme

dev-env / tsconfig

UNIAI 프런트엔드 프로젝트에서 공통으로 사용하는 TypeScript 프리셋 모음입니다.

디렉터리 구성

  • essentials/base.json: 환경에 의존하지 않는 언어 레벨 옵션을 정의한 최상위 프리셋.
  • essentials/node.json: Node 런타임/SSR용 기본 설정. moduleResolution: "NodeNext"types: ["node"]를 제공합니다.
  • essentials/client.json: 브라우저 런타임에서 필요한 DOM 라이브러리와 번들러 해상도를 포함한 클라이언트 전용 프리셋.
  • essentials/react.json: React 프로젝트 공통 옵션(jsx: "react-jsx", useDefineForClassFields)을 모은 프리셋.

앱 실행환경 프리셋

  • apps/vite.json: essentials/react.json을 확장해 Vite 번들링에 필요한 옵션과 엄격한 no-unused 규칙을 추가합니다.
  • apps/vite.node.json: Vite 기반 SSR/라이브러리 빌드를 위해 essentials/node.json을 확장한 프리셋입니다.
  • apps/next.json: App Router 기준 Next.js 프로젝트를 위한 프리셋으로 Next 공식 플러그인을 활성화합니다.
  • apps/next.legacy.json: Pages Router 호환을 위해 남겨둔 레거시 프리셋(신규 프로젝트에서는 사용하지 않습니다).

사용 예시

{
  "extends": "@uniai-fe/tsconfig/vite.json",
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/*": ["src/*"]
    }
  }
}

프로젝트 목적에 맞는 프리셋을 extends로 지정하고, 로컬 경로나 include/exclude만 추가해 사용하는 것을 권장합니다.