diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-11-26 17:27:33 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-11-26 17:27:33 +0100 |
commit | b7f4ecc76a1dd751fd579bb92b5aff49780ec27d (patch) | |
tree | cde41a6b045f0657a89d6179c008fdc6543edaf5 /src/background | |
parent | a851c3fb33335fb42de8280c6bad2a6699bb746f (diff) |
remove i18n.parts and switch fully to JSX syntax
Diffstat (limited to 'src/background')
-rw-r--r-- | src/background/background.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/background/background.ts b/src/background/background.ts index 8a3f2477d..fe2359812 100644 --- a/src/background/background.ts +++ b/src/background/background.ts @@ -27,8 +27,8 @@ window.addEventListener("load", () => { // TypeScript does not allow ".js" extensions in the // module name, so SystemJS must add it. System.config({ - defaultJSExtensions: true, - }); + defaultJSExtensions: true, + }); System.import("../wxBackend") .then((wxMessaging: any) => { |