12345678910111213 |
- module.exports = {
- extends: [
- 'eslint:recommended',
- 'plugin:@typescript-eslint/recommended-type-checked',
- ],
- plugins: ['@typescript-eslint'],
- parser: '@typescript-eslint/parser',
- parserOptions: {
- project: true,
- },
- ignorePatterns: ['.eslintrc.js'],
- root: true,
- };
|