Skip to content

Commit 86448eb

Browse files
committed
Remove import.meta.dirname from tsup.config.ts
1 parent ab44f2b commit 86448eb

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tsup.config.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ if (process.env.NODE_ENV === 'production') {
1515
)
1616
}
1717

18-
const tsconfig = path.join(
19-
import.meta.dirname,
20-
'./tsconfig.build.json',
21-
) satisfies Options['tsconfig']
18+
const tsconfig = 'tsconfig.build.json' satisfies Options['tsconfig']
2219

2320
export default defineConfig((options) => {
2421
const commonOptions: Options = {

0 commit comments

Comments
 (0)