Skip to content

Commit

Permalink
fix: tweak up input param resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Jan 30, 2024
1 parent 4542494 commit 072408a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/ts/dts.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** @module @qiwi/libdefkit */

/** */
import path from 'node:path'
import fse from 'fs-extra'
import { globbySync } from 'globby'
import { generateDts } from 'tsc-dts-fix'
Expand Down Expand Up @@ -35,7 +36,7 @@ export const generate = (
} = cfg

return generateDts({
input: rootDir + '/index.ts',
input: path.join(rootDir, 'index.ts'),
strategy: 'bundle',
pkgName: name,
outDir,
Expand Down

0 comments on commit 072408a

Please sign in to comment.