Détail du package

@mcous/typescript-config

mcous67MIT0.3.0

My base TypeScript configuration.

tsconfig

readme

@mcous/typescript-config

My common TypeScript configuration.

Install

pnpm add --save-dev typescript @mcous/typescript-config

Usage

Use the base config for generic TypeScript projects, including code that runs natively in Node.js or isomorphically, in both Node.js and the browser.

// tsconfig.json
{
  "extends": "@mcous/typescript-config/base.json",
  "compilerOptions": {
    // ...project specific options, like `module` and `target`
  },
}