1.0.0 • Published 4 years ago

@dcylabs/stencil-custom-elements-json v1.0.0

Weekly downloads
5
License
-
Repository
github
Last release
4 years ago

Stencil Custom Elements JSON

A simple stencil plugin that allows you to generate the custom-elements.json needed for Storybook docs plugin

Install

npm i --save @dcylabs/stencil-custom-elements-json

Usage

import { Config } from '@stencil/core';
import { customElements } from '@dcylabs/stencil-custom-elements-json';

export const config: Config = {
  outputTargets: [
    customElements()
  ]
};