27 lines
516 B
TypeScript
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",
|
|
},
|
|
};
|