🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

@aureldvx/tsconfig

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

@aureldvx/tsconfig

A collection of tsconfig files for my personal projects

latest
Source
npmnpm
Version
1.3.1
Version published
Maintainers
1
Created
Source

TSConfig files

The TypeScript configuration is as strict as possible from my point of view. It is inherited in high parts from the astro team's configuration.

Installation

npm install --save-dev @aureldvx/tsconfig
# or
yarn add --dev @aureldvx/tsconfig
# or
pnpm install --save-dev @aureldvx/tsconfig

Usage

To use the configuration, add the following to your tsconfig.json file:

{
  "$schema": "https://json.schemastore.org/tsconfig",
  "extends": "@aureldvx/tsconfig/<variant>",
  "compilerOptions": {
    // Your additional configuration here
  },
  "include": ["<your-files-here>"]
}

Multiple variants are available :

  • basic : default configuration with recommended options
  • strict : strictest configuration possible for a better type-safety
  • react : specific for react application and inherits basic config.
  • react-strict : specific for react application but inherits strict config.
  • adonis : specific for AdonisJS application but inherits strict config.
  • node : adapted for tooling (like ESLint configuration files with the noEmit flag enabled)

Keywords

typescript

FAQs

Package last updated on 12 Mar 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