Update dependency typescript to v3.3.1 (#444)

* Update dependency typescript to v3.3.1

* Fix trailing commas for function calls

* Reverting trailing comma change

* Avoiding trailing comma rule for imports

* I never know what the right thing to do is

* lockfile
This commit is contained in:
renovate[bot]
2019-02-22 14:22:57 +00:00
committed by Jake Archibald
parent f1859eeef2
commit bf34075e6a
5 changed files with 13 additions and 22 deletions

View File

@@ -7,8 +7,7 @@ function init() {
if (!('customElements' in self)) {
import(
/* webpackChunkName: "wc-polyfill" */
'@webcomponents/custom-elements',
).then(init);
'@webcomponents/custom-elements').then(init);
} else {
init();
}