JSPM

indefinitely-typed

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 25625
  • Score
    100M100P100Q139936F
  • License MIT

🐣 Incubate your TypeScript declarations

Package Exports

  • indefinitely-typed

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (indefinitely-typed) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

🐣 indefinitely-typed

For TypeScript declarations that are still ...hatching.

DefinitelyTyped is the repository for high quality TypeScript type definitions. Use this tool if your definitions are not yet up to that quality bar, but you still need to use them in a project.

Usage

Let's say that you want to create TypeScript declarations for cool-package.

  1. Create an NPM package for your typings, perhaps name it cool-package-typings.
  2. npm install indefinitely-typed.
  3. Create a folder named cool-package.
  4. Add declaration files in this folder, like index.d.ts.
  5. In the package.json's scripts, add a postinstall script like this:
"postinstall": "indefinitely-typed --folder cool-package"

Now, when somebody installs cool-package-typings, they will have a node_modules/@types/cool-package folder, readily usable by their TypeScript project.

Multiple packages

If you have multiple packages, add more folder parameters like this:

indefinitely-typed --folder folder1 --folder folder2 --folder folder3