Skip to content

Commit

Permalink
Fix import from CJS lib
Browse files Browse the repository at this point in the history
  • Loading branch information
klippx committed Sep 21, 2023
1 parent 7b6bfc3 commit e1b3661
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ import debug from 'debug'
import type { FileSystem, ResolveOptions, Resolver } from 'enhanced-resolve'
import enhancedResolve from 'enhanced-resolve'
import { hashObject } from 'eslint-module-utils/hash.js'
import { sync as globSync } from 'fast-glob'
import FastGlob from 'fast-glob'
import { createPathsMatcher, getTsconfig } from 'get-tsconfig'
import type { TsConfigResult } from 'get-tsconfig'
import isCore from 'is-core-module'
import isGlob from 'is-glob'
const { sync: globSync } = FastGlob

const IMPORTER_NAME = 'eslint-import-resolver-typescript'

Expand Down

0 comments on commit e1b3661

Please sign in to comment.