Package detail

@finsweet/tsconfig

finsweet2.4kMIT1.4.1

Shared TypeScript config for all Finsweet projects.

finsweet, typescript, tsconfig, webflow

readme

@finsweet/tsconfig

Shared TypeScript config for all Finsweet projects.

Installation

pnpm add -D @finsweet/tsconfig
npm install -D @finsweet/tsconfig
yarn add --dev @finsweet/tsconfig

Usage

Create the following tsconfig.json file:

{
  "extends": "@finsweet/tsconfig"
}

You can override any rule in your file, like:

{
  "extends": "@finsweet/tsconfig",
  "paths": {
    "$lib/*": ["src/lib/*"]
  }
}

changelog

@finsweet/tsconfig

1.4.2

Patch Changes

  • 6dea104: chore: updated dependencies

1.4.1

Patch Changes

  • 92b4715: chore: updated dependencies

1.4.0

Minor Changes

  • 37a6510: feat: switched to "moduleResolution": "Bundler"

Patch Changes

  • 37a6510: chore: updated dependencies

1.3.4

Patch Changes

  • f980a8b: chore: updated dependencies

1.3.3

Patch Changes

  • f916b9b: chore: updated dependencies

1.3.2

Patch Changes

  • fb840f4: chore: updated dependencies

1.3.1

Patch Changes

  • c0d7cfc: Roll back to moduleResolution="node" because it seems that many libraries still don't support the new bundler option.

1.3.0

Minor Changes

  • 4b05785: - Updated config to use the new verbatimModuleSyntax and moduleResolution="bundle" options from TS 5.0.
    • Bumped the compiler target to ES2020.
    • Updated dependencies.

1.2.0

Minor Changes

  • 6f9f17a: Bump compilerOptions.target to ES2019.