We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ccb2d6 commit febcd73Copy full SHA for febcd73
src/config/file.ts
@@ -112,7 +112,10 @@ export async function loadConfigFile(
112
let file: string | undefined
113
if (result) {
114
;({ config: exported, source: file } = result)
115
- globalLogger.info(`Using tsdown config: ${underline(file)}`)
+ globalLogger.info(
116
+ `config file: ${underline(file)}`,
117
+ loader === 'native' ? '' : `(${loader})`,
118
+ )
119
120
exported = await exported
121
if (typeof exported === 'function') {
0 commit comments