1.3.1 • Published 10 months ago

@aureldvx/tsconfig v1.3.1

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

npm.io

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)
1.3.1

10 months ago

1.3.0

10 months ago

1.2.0

10 months ago

1.1.0

11 months ago

1.0.0

11 months ago

0.1.0

11 months ago