🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

@nexim/typescript-config

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nexim/typescript-config

Base TypeScript configuration for Nexim projects.

latest
Source
npmnpm
Version
2.0.2
Version published
Weekly downloads
14
7.69%
Maintainers
1
Weekly downloads
 
Created
Source

Nexim TypeScript Configuration

NPM Version Build & Lint & Test NPM Downloads NPM License

This package provides pre-configured settings for using TypeScript in Nexim projects.

Installation

Install the package as a development dependency:

yarn add -D @nexim/typescript-config

Usage

To use this configuration, create a tsconfig.json file in the root of your project and extend one of the provided configurations:

Base Configuration (tsconfig.base.json)

This configuration contains the fundamental settings shared by all other configurations. It's generally not used directly, but serves as the foundation for other, more specific configurations.

Browser Application (tsconfig.browser.app.json)

Use this configuration for browser-based applications. It extends the base configuration and is primarily used for type checking during development. It doesn't produce build outputs.

{
  "extends": "@nexim/typescript-config/tsconfig.browser.app.json",
  "include": ["src/**/*.ts", "src/*.ts"] // Include all TypeScript files in your source directory
}

Browser Library (tsconfig.browser.lib.json)

Use this configuration for browser-based libraries. extends the base configuration, generates declaration files (*.d.ts), and supports referencing other projects.

{
  "extends": "@nexim/typescript-config/tsconfig.browser.lib.json",
  "include": ["src/**/*.ts", "src/*.ts"] // Include all TypeScript files in your source directory
}

Node.js Application (tsconfig.node.app.json)

Use this configuration for nodejs-based applications. It extends the base configuration and includes Node.js specific type definitions. It doesn't produce build outputs and primarily used for type checking during development.

{
  "extends": "@nexim/typescript-config/tsconfig.node.app.json",
  "include": ["src/**/*.ts", "src/*.ts"] // Include all TypeScript files in your source directory
}

Node.js Library (tsconfig.node.lib.json)

Use this configuration for nodejs-based libraries. extends the base configuration, incorporates Node.js type definitions, generates declaration files (*.d.ts), and supports referencing other projects.

{
  "extends": "@nexim/typescript-config/tsconfig.node.lib.json",
  "include": ["src/**/*.ts", "src/*.ts"] // Include all TypeScript files in your source directory
}

Keywords

typescript

FAQs

Package last updated on 05 Feb 2026

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