Skip to content

Files

Latest commit

a1016db · Sep 16, 2024

History

History

typescript-config

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 16, 2024
Oct 8, 2023
Sep 16, 2024

@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`
  },
}