TypeScript/tests/baselines/reference/preserveValueImports_errors(isolatedmodules=false).js
Andrew Branch 8610ff5ebe
Add --preserveValueImports (#44619)
* Add compiler option

* Require es2015+

* Do not elide any imports or exports in preserve-exact

* Add errors for writing imports/exports that reference elided names

* Improve diagnostics wording

* Update API baselines

* Redo as noEraslingImportedNames

* Update option category

* Update baselines

* Lint

* Fix up transformer comments

* Fix errors from merge

* Update other error code baseline

* Rename to "preserveValueImports"

* Clean up, reword diagnostics

* Update API baselines

* Update other baseline affected by error message reword

* Update tsconfig baselines

* Add debug assertion instead of !
2021-09-08 16:30:22 -07:00

74 lines
1.3 KiB
TypeScript

//// [tests/cases/conformance/externalModules/typeOnly/preserveValueImports_errors.ts] ////
//// [a.ts]
export type A = {};
export type { A as default };
//// [b.ts]
class B {};
export type { B, B as default };
//// [c.ts]
import DefaultA from "./a";
import { A } from "./a";
import DefaultB from "./b";
import { B } from "./b";
//// [c.fixed.ts]
import type DefaultA from "./a";
import type { A } from "./a";
import type DefaultB from "./b";
import type { B } from "./b";
//// [d.ts]
export { A as AA } from "./a";
export { B as BB } from "./b";
//// [d.fixed.ts]
export type { A as AA } from "./a";
export type { B as BB } from "./b";
//// [e.ts]
import { AA, BB } from "./d";
//// [e.fixed.ts]
import type { AA, BB } from "./d";
//// [f.ts]
import type { A } from "./a";
import type { B } from "./b";
export { A, B as BB };
//// [f.fixed.ts]
import type { A } from "./a";
import type { B } from "./b";
export type { A, B as BB };
//// [a.js]
export {};
//// [b.js]
var B = /** @class */ (function () {
function B() {
}
return B;
}());
;
export {};
//// [c.js]
export {};
//// [c.fixed.js]
export {};
//// [d.js]
export {};
//// [d.fixed.js]
export {};
//// [e.js]
export {};
//// [e.fixed.js]
export {};
//// [f.js]
export {};
//// [f.fixed.js]
export {};