From 55a326825ee2f176d1be2fe5702623d2d77f756b Mon Sep 17 00:00:00 2001 From: Jason Cheatham Date: Fri, 26 Nov 2021 08:54:03 -0500 Subject: [PATCH] Add missing eslintrc config --- src/browser/.eslintrc.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/browser/.eslintrc.js diff --git a/src/browser/.eslintrc.js b/src/browser/.eslintrc.js new file mode 100644 index 000000000..c15ef15a7 --- /dev/null +++ b/src/browser/.eslintrc.js @@ -0,0 +1,7 @@ +module.exports = { + "extends": "../../.eslintrc.json", + "parserOptions": { + "tsconfigRootDir": __dirname, + "project": "./tsconfig.json" + } +}