-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstencil.config.ts
More file actions
31 lines (30 loc) · 717 Bytes
/
stencil.config.ts
File metadata and controls
31 lines (30 loc) · 717 Bytes
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
27
28
29
30
31
import { Config } from '@stencil/core';
import { sass } from '@stencil/sass';
export const config: Config = {
namespace: 'nvq-components',
outputTargets: [
{
type: 'dist',
esmLoaderPath: '../loader'
},
{
type: 'docs-readme'
},
{
type: 'www',
copy: [
{ src: 'examples' }
],
serviceWorker: null // disable service workers
}
],
bundles: [
{ components: ['nvq-progress-bar'] },
{ components: ['nvq-editor'] },
{ components: ['nvq-label'] } ,
{ components: ['nvq-autocomplete'] }
],
plugins: [
sass()
]
};