Skip to content

Commit

Permalink
Fix(eslint-config-typescript): Fix base module resolving
Browse files Browse the repository at this point in the history
  • Loading branch information
OndraM authored and literat committed May 17, 2024
1 parent 7944d84 commit e9c7e1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config-typescript/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const base = require('@lmc-eu/eslint-config-base');
const globs = require('@lmc-eu/eslint-config-base/globs');

module.exports = {
extends: [...require.resolve('@lmc-eu/eslint-config-base'), 'plugin:@typescript-eslint/recommended'],
extends: [require.resolve('@lmc-eu/eslint-config-base'), 'plugin:@typescript-eslint/recommended'],

settings: {
// Correctly recognize .ts and .d.ts files when checking import paths against the filesystem
Expand Down

0 comments on commit e9c7e1b

Please sign in to comment.