forked from kickstand-ui/kickstand-ui
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstencil.config.ts
41 lines (40 loc) · 937 Bytes
/
stencil.config.ts
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
import { Config } from '@stencil/core';
import { sass } from '@stencil/sass';
import { postcss } from '@stencil/postcss';
import autoprefixer from 'autoprefixer';
import cssnano from 'cssnano';
export const config: Config = {
namespace: 'kickstand-ui',
outputTargets: [
{
type: 'dist',
esmLoaderPath: '../loader'
},
{
type: 'docs-readme'
},
{
type: 'docs-vscode',
file: './dist/custom-elements.json'
},
{
type: 'www',
serviceWorker: null, // disable service workers
},
],
globalStyle: 'src/scss/styles.scss',
plugins: [
sass(),
postcss({
plugins: [
autoprefixer(),
cssnano()
]
})
],
buildEs5: 'prod',
extras: {
cssVarsShim: true,
shadowDomShim: false
}
};