mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
29 lines
472 B
TypeScript
29 lines
472 B
TypeScript
// @preserveValueImports: true
|
|
// @isolatedModules: true,false
|
|
// @module: esnext
|
|
|
|
// @Filename: a.ts
|
|
export default {};
|
|
export const b = 0;
|
|
export const c = 1;
|
|
export interface D {}
|
|
|
|
// @Filename: b.ts
|
|
import a, { b, c, D } from "./a";
|
|
|
|
// @Filename: c.ts
|
|
import * as a from "./a";
|
|
|
|
// @Filename: d.ts
|
|
export = {};
|
|
|
|
// @Filename: e.ts
|
|
import D = require("./d");
|
|
import DD = require("./d");
|
|
DD;
|
|
|
|
// @Filename: f.ts
|
|
import type a from "./a";
|
|
import { b, c } from "./a";
|
|
b;
|