1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27import { angularOutputTarget } from '@stencil/angular-output-target';
import { Config } from '@stencil/core';
export const config: Config = {
namespace: 'umami-components',
outputTargets: [
angularOutputTarget({
componentCorePackage: `umami-components-stencil`,
directivesProxyFile: `/Users/max/git/umami-components-angular/projects/umami-components-angular/src/lib/stencil-generated/components.ts`
}),
{
type: 'dist',
esmLoaderPath: '../loader',
},
{
type: 'dist-custom-elements',
},
{
type: 'docs-readme',
},
{
type: 'www',
serviceWorker: null, // disable service workers
},
],
};