Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@aristobyte-ui/typescript-config

Package Overview
Dependencies
Maintainers
1
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aristobyte-ui/typescript-config

Shared TypeScript config presets used across AristoByteUI platform and packages.

Source
npmnpm
Version
1.0.8
Version published
Weekly downloads
1.7K
41.14%
Maintainers
1
Weekly downloads
 
Created
Source

@aristobyte/typescript-config

Centralized TypeScript configuration package for AristoByte monorepo.

Overview

This package consolidates shared TypeScript configurations to ensure consistent type safety, module resolution, and build standards across all AristoByte projects, including apps/storybook, docs, and UI packages.

Leveraging a base config (tsconfig.base.json), it provides extended presets for library builds and Next.js apps, streamlining developer experience and enforcing best practices at scale.

Included Configurations

  • tsconfig.base.json
    Core compiler settings with strictness, module resolution (NodeNext), declaration output, and path aliases for seamless cross-package imports.

  • tsconfig.react.json
    Extends the base config, optimized for building React component libraries with JSX support and declaration-only emission.

  • tsconfig.next.json
    Tailored for Next.js projects, featuring JSX preservation, ESNext modules, bundler-aware resolution, and integration with Next.js plugins.

Usage

In your project tsconfig.json, extend the relevant config depending on the context:

{
  "extends": "@aristobyte/typescript-config/tsconfig.base.json"
}

or

{
  "extends": "@aristobyte/typescript-config/tsconfig.react.json"
}

or

{
  "extends": "@aristobyte/typescript-config/tsconfig.next.json"
}

Benefits

  • Enforces strict type safety and consistent compiler behavior.
  • Simplifies path aliasing and module resolution across packages.
  • Enhances incremental build performance and tooling compatibility.
  • Aligns configurations for React libraries and Next.js apps out-of-the-box.

Contribution

Feel free to propose improvements or extensions to adapt to evolving codebase requirements.

© AristoByte Inc. — Empowering scalable, maintainable TypeScript architectures.

Keywords

typescript

FAQs

Package last updated on 26 Aug 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