diff --git a/.eslintrc.json b/.eslintrc.json index f5782263..c7dbdc7e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -20,6 +20,7 @@ "globals": { "cordova": true, "require": true, - "exports": true + "exports": true, + "module": true } } diff --git a/src/browser/.eslintrc.json b/src/browser/.eslintrc.json new file mode 100644 index 00000000..22abc7fb --- /dev/null +++ b/src/browser/.eslintrc.json @@ -0,0 +1,5 @@ +{ + "env": { + "es6": true + } +} diff --git a/src/browser/jsconfig.json b/src/browser/jsconfig.json new file mode 100644 index 00000000..6cb6c8a1 --- /dev/null +++ b/src/browser/jsconfig.json @@ -0,0 +1,5 @@ +{ + "compilerOptions": { + "target": "es6" + } +}