Files
LUNA-Charts/packages/luna-charts/stencil.config.ts
T

28 lines
543 B
TypeScript

import { Config } from '@stencil/core';
export const config: Config = {
namespace: 'luna-charts',
outputTargets: [
{
type: 'dist',
esmLoaderPath: '../loader',
},
{
type: 'dist-custom-elements',
customElementsExportBehavior: 'auto-define-custom-elements',
externalRuntime: false,
},
{
type: 'docs-readme',
},
{
type: 'www',
serviceWorker: null, // disable service workers
},
{
type: 'docs-json',
file: './custom-elements.json',
},
],
};