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 32fb08e commit 48484f6Copy full SHA for 48484f6
packages/plugin-dts/src/dts.ts
@@ -147,6 +147,14 @@ export async function generateDts(data: DtsGenOptions): Promise<void> {
147
throw Error(`Can not set "dts.bundle: true" when "dts.build = true"`);
148
}
149
150
+ console.log(
151
+ 'rawCompilerOptions.declarationDir: ',
152
+ rawCompilerOptions.declarationDir,
153
+ );
154
155
+ 'resolve(dirname(configPath), outDir): ',
156
+ resolve(dirname(configPath), outDir),
157
158
// can not set '--declarationDir' or '--outDir' when 'build: true'.
159
if (
160
(!rawCompilerOptions.outDir ||
0 commit comments