Closed timocov closed 7 months ago
Bug report
Input code
// config.ts const config: TestCaseConfig = { output: { inlineDeclareExternals: true, }, };
index.d.ts:
/// <reference path="./modules.d.ts" preserve="true" /> export {};
modules.d.ts:
declare module '*.css' {} declare module 'module-that-does-not-exist-actually' { }
Expected output
declare module "*.css" { } declare module "module-that-does-not-exist-actually" { } export {};
Actual output
export {};
Additional context Add any other context about the problem here (CLI options, etc)
Bug report
Input code
index.d.ts:
modules.d.ts:
Expected output
Actual output
Additional context Add any other context about the problem here (CLI options, etc)