Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@phryneas/ts-version

phryneas663MIT1.0.2TypeScript support: included

A little utility type package that allows you to access the current TypeScript version from your types.

readme

@phryneas/ts-version

A little utility type package that allows you to access the current TypeScript version from your types.

import { TSVersion } from "@phryneas/ts-version";

type Version = `${TSVersion.Major}.${TSVersion.Minor}`;

type VersionDependentType = TSVersion.AtLeast<4, 7> extends true
  ? "we're in the future!"
  : "it's the stone age!";