-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstencil.config.js
executable file
·56 lines (55 loc) · 1.11 KB
/
stencil.config.js
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
exports.config = {
namespace: 'material-webcomponents',
generateDistribution: true,
bundles: [
{ components: [
'mwc-button',
'mwc-card-actions',
'mwc-card-content',
'mwc-card-header',
'mwc-card-media',
'mwc-card',
'mwc-container',
'mwc-checkbox',
'mwc-dialog-body',
'mwc-dialog-footer',
'mwc-dialog-header',
'mwc-dialog',
'mwc-drawer',
'mwc-fab',
'mwc-grid-list',
'mwc-grid-list-tile',
'mwc-icon-toggle',
'mwc-list',
'mwc-list-item',
'mwc-menu',
'mwc-menu-item',
'mwc-paper',
'mwc-progress',
'mwc-radio',
'mwc-select',
'mwc-slider',
'mwc-snackbar',
'mwc-switch',
'mwc-tabbar',
'mwc-textfield',
'mwc-theme',
'mwc-toolbar',
'mwc-toolbar-section',
'mwc-toolbar-title',
'mwc-toolbar-icon',
'mwc-content-for-toolbar',
'mwc-typography',
'mwc-viewport'
] }
],
sassConfig:{
"includePaths":[
"./node_modules"
]
}
};
exports.devServer = {
root: 'www',
watchGlob: '**/**'
}