1. @pika/plugin-build-types
A @pika/pack plugin: Adds TypeScript type definitions to your package build.
@pika/plugin-build-types
Package: @pika/plugin-build-types
Created by: pikapkg
Last modified: Wed, 06 Apr 2022 14:30:47 GMT
Version: 0.9.2
License: MIT
Downloads: 3,055
Repository: https://github.com/pikapkg/builders

Install

npm install @pika/plugin-build-types
yarn add @pika/plugin-build-types

@pika/plugin-build-types

A @pika/pack build plugin.
Automatically adds TypeScript type definitions to your package build.

Note: This plugin is not needed if you are already writing TypeScript and using the ts-standard-pkg plugin.

Install

 # npm:
npm install @pika/plugin-build-types --save-dev
# yarn:
yarn add @pika/plugin-build-types --dev

Usage

 {
  "name": "example-package-json",
  "version": "1.0.0",
  "@pika/pack": {
    "pipeline": [
      ["@pika/plugin-standard-pkg"],
      ["@pika/plugin-build-types"]
    ]
  }
}

For more information about @pika/pack & help getting started, check out the main project repo.

Options

  • "tsconfig": The relative path to the tsconfig.json config file to use. Defaults to the top-level project TypeScript config file, if one exists.
  • "args": Optional, an array of additional arguments for tsc. Example: ["--build"]
  • "entrypoint" (Default: "types"): Customize the package.json manifest entrypoint set by this plugin. Accepts either a string, an array of strings, or null to disable entrypoint. Changing this is not recommended for most usage.

Result

  1. Adds or generates TypeScript definitions for your package build: dist-types/
  • If your package is written in TypeScript: Types are automatically generated from your source.
  • If your package already includes custom-written type definitions: These files are automatically copied into your package build.
  • Otherwise: Automatically generate definitions from your JavaScript source. (Note that this currently requires that you include @pika/plugin-build-node or some other Node.js build earlier in the pipeline.)
  1. Adds a "types" entrypoint to your built package.json manifest.

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code