Skip to content

Commit

Permalink
chore: rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed Nov 30, 2022
1 parent 9fcd4b8 commit 8c30937
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Expand Up @@ -101,11 +101,11 @@ export default (opts: PluginOptions = {}): Plugin => {
}

function createResolver(
parsed: tsconfck.TSConfckParseResult
project: tsconfck.TSConfckParseResult
): Resolver | null {
const configPath = parsed.tsconfigFile
const configPath = project.tsconfigFile
const configDir = dirname(configPath)
const config = parsed.tsconfig as {
const config = project.tsconfig as {
include?: string[]
exclude?: string[]
compilerOptions: CompilerOptions
Expand Down

0 comments on commit 8c30937

Please sign in to comment.