Socket
Socket
Sign inDemoInstall

@polymer/gen-typescript-declarations

Package Overview
Dependencies
9
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@polymer/gen-typescript-declarations


Version published
Weekly downloads
1.3K
decreased by-28.91%
Maintainers
1
Install size
11.3 MB
Created
Weekly downloads
 

Readme

Source

gen-typescript-declarations

Build Status NPM version

A library which generates TypeScript declarations for Polymer and custom elements.

How do I use the typings?

Polymer

Typings for the Polymer 2.0 library will be included in future releases on Bower in the types/ directory (pending PR).

Install Polymer normally from Bower, and add a triple-slash directive anywhere in your TypeScript project for the typings you require. Each HTML import from Polymer has a corresponding typings file. For example, if you depend on polymer-element.html:

/// <reference path="./bower_components/polymer/types/polymer-element.d.ts" />`

class MyElement extends Polymer.Element {
  ...
}

You may also be interested in the Polymer decorators.

How do I generate new typings?

You can run this package from the command line with gen-tsd, or as a library with the generateDeclarations function.

It is recommended to integrate typings generation as part of your build/release process:

$ npm install --save-dev @polymer/gen-typescript-declarations

Add a gen-tsd script to your package.json:

{
  ...
  "scripts": {
    "gen-tsd": "gen-tsd"
  }
}

If you're using Bower, ensure you run npm run gen-tsd to generate the latest typings and commit them to your repository before tagging each release.

If you're using NPM, you can instead add this script to the NPM prepack script to generate and include typings in your NPM package every time you publish.

Config options

By default the gen-tsd command will read a file called gen-tsd.json in your root directory. It has the following options:

  • exclude: string[]

    Skip source files whose paths match any of these glob patterns. If undefined, defaults to excluding directories ending in "test" or "demo".

  • removeReferences: string[]

    Remove any triple-slash references to these files, specified as paths relative to the analysis root directory.

  • addReferences: {[filepath: string]: string[]}

    Additional files to insert as triple-slash reference statements. Given the map a: b[], a will get an additional reference statement for each file path in b. All paths are relative to the analysis root directory.

Using as a module

You can also use this package as a module:

import {generateDeclarations} from 'gen-typescript-declarations';

const config = {
  "exclude": [
    "test/",
  ],
  "removeReferences": [
    "../shadycss/apply-shim.d.ts",
  ],
  "addReferences": {
    "lib/utils/boot.d.ts": [
      "extra-types.d.ts"
    ]
  }
}

// A map of d.ts file paths to file contents.
const declarations = await generateDeclarations('/my/root/dir', config);

FAQ

Why are some typings missing?

This library is based on Polymer Analyzer which has limitations in its static analysis. For certain patterns, Analyzer relies on additional JSDoc annotations.

Can I augment the generated typings with hand-written ones?

Yes, see the addReferences config option above.

FAQs

Last updated on 15 Dec 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc