From d54c01ff0fe82bb6d675e0f4871a2a116adca2ff Mon Sep 17 00:00:00 2001 From: Walidoux Date: Fri, 26 Aug 2022 17:36:03 +0100 Subject: [PATCH] =?UTF-8?q?refactor:=20=F0=9F=94=A7=20implement=20parser?= =?UTF-8?q?=20options?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.js b/index.js index 33de4a3..95d88d9 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,11 @@ module.exports = { extends: ['conventions', 'prettier'], plugins: ['prettier'], + parser: '@typescript-eslint/parser', + parserOptions: { + ecmaVersion: 'latest', + project: './tsconfig.json' + }, env: { node: true, browser: true