UNPKG

@exadel/eslint-config-esl

Version:

Shared ESLint config used by ESL (@exadel/esl) team. Internal projects usage.

18 lines (16 loc) 317 B
import globals from 'globals'; import {parser} from 'typescript-eslint'; export default [{ files: ['**/*.ts', '**/*.tsx'], languageOptions: { parser, ecmaVersion: 2017, sourceType: 'module', parserOptions: { projectService: true }, globals: { ...globals.browser } } }];