-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpolymer.json
58 lines (58 loc) · 1.51 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"shell": "src/main-app.js",
"entrypoint": "src/index.html",
"fragments": [
"src/views/home-page.js",
"src/views/mul-encode-page.js",
"src/views/settings-page.js",
"src/views/about-page.js",
"src/views/login-page.js",
"src/components/input-component.js",
"src/components/baseterms-component.js",
"src/components/facets-component.js",
"src/components/overview-component.js",
"src/components/code-component.js",
"src/components/feedback-component.js",
"src/components/progress-bar-component.js",
"src/components/terms-of-use.js"
],
"npm": true,
"moduleResolution": "node",
"sources": [
"src/**/*",
"package.json"
],
"extraDependencies": [
"node_modules/@webcomponents/webcomponentsjs/**"
],
"builds": [
{
"name": "prod",
"preset": "es6-bundled",
"bundle": {
"stripComments": true,
"inlineCss": false,
"sourcemaps": true
},
"addServiceWorker": true,
"addPushManifest": true,
"js": {
"minify": true
},
"css": {
"minify": true
},
"html": {
"minify": true
}
}
],
"lint": {
"rules": [
"polymer-3"
],
"ignoreWarnings": [
"could-not-resolve-reference"
]
}
}