-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpolymer.json
45 lines (42 loc) · 1.3 KB
/
polymer.json
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
{
"entrypoint": "index.html",
"shell": "deploy/application-shell.js",
"html-minify": true,
"moduleResolution": "node",
"npm": true,
"license": "MIT",
"sources": [
"images/**/*"
],
"extraDependencies": [
"TERMS.md",
"robots.txt",
"sitemap.xml",
"sw.js",
"manifest.json",
"node_modules/@webcomponents/webcomponentsjs/**/*",
"node_modules/@webcomponents/webcomponentsjs/bundles/**/*",
"node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js",
"node_modules/lit/polyfill-support.js"
],
"builds":
[
{
"name": "es5-bundled",
"js": { "minify": true, "compile": true, "transformModulesToAmd": true },
"css": { "minify": true },
"html": { "minify": true },
"bundle": { "inlineScripts": false },
"addServiceWorker": true
},
{
"name": "es6-bundled",
"browserCapabilities": [ "es2015" ],
"js": { "minify": true, "compile": true, "transformModulesToAmd": true },
"css": { "minify": true },
"html": { "minify": true },
"bundle": { "inlineScripts": false },
"addServiceWorker": true
}
]
}