diff options
| author | Michael Foiani <mfoiani2019@communityschoolnaples.org> | 2018-07-25 19:38:43 -0400 |
|---|---|---|
| committer | Michael Foiani <mfoiani2019@communityschoolnaples.org> | 2018-07-25 19:38:43 -0400 |
| commit | 3c09a0a91488e182f521b0cd39017cb5bc781a83 (patch) | |
| tree | bc26d401b97f13169f3becdfe03bba6fd0f34353 /polymer.json | |
Initial commit. Added pwa starter kit to project for the application.
Diffstat (limited to 'polymer.json')
| -rw-r--r-- | polymer.json | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/polymer.json b/polymer.json new file mode 100644 index 0000000..e478bce --- /dev/null +++ b/polymer.json @@ -0,0 +1,69 @@ +{ + "entrypoint": "index.html", + "shell": "src/components/my-app.js", + "sources": [ + "images/**/*" + ], + "extraDependencies": [ + "manifest.json", + "node_modules/@webcomponents/webcomponentsjs/**", + "push-manifest.json" + ], + "builds": [ + { + "name": "esm-bundled", + "browserCapabilities": [ + "es2015", + "modules" + ], + "js": { + "minify": true + }, + "css": { + "minify": true + }, + "html": { + "minify": true + }, + "bundle": true, + "addServiceWorker": true + }, + { + "name": "es6-bundled", + "browserCapabilities": [ + "es2015" + ], + "js": { + "compile": "es2015", + "minify": true, + "transformModulesToAmd": true + }, + "css": { + "minify": true + }, + "html": { + "minify": true + }, + "bundle": true, + "addServiceWorker": true + }, + { + "name": "es5-bundled", + "js": { + "compile": "es5", + "minify": true, + "transformModulesToAmd": true + }, + "css": { + "minify": true + }, + "html": { + "minify": true + }, + "bundle": true, + "addServiceWorker": true + } + ], + "moduleResolution": "node", + "npm": true +} |
