StencilHome/stencil.config.ts
2024-11-19 16:07:52 +01:00

27 lines
516 B
TypeScript

import { Config } from '@stencil/core';
export const config: Config = {
namespace: 'advancetextbox',
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
},
],
testing: {
browserHeadless: "new",
},
};