refactor: 🔧 implement parser options

This commit is contained in:
Walid 2022-08-26 17:36:03 +01:00
parent 54a9ce699d
commit d54c01ff0f
No known key found for this signature in database
GPG Key ID: 7DF9215FC4E48853

View File

@ -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