1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
//// [tests/cases/conformance/moduleResolution/bundler/bundlerSyntaxRestrictions.ts] ////
//// [index.d.ts]
declare var require: (...args: any[]) => any;
//// [ambient.d.ts]
declare module "fs" {
export function readFileSync(path: string, encoding?: string): string;
}
declare module "path" {
import fs = require("fs"); // ok
namespace path {
export const sep: string;
}
export = path; // ok
}
//// [mainJs.js]
import {} from "./a";
import("./a");
const _ = require("./a"); // No resolution
_.a; // any
//// [main.ts]
import {} from "./a";
import _ = require("./a"); // Error
export = {}; // Error
export {};
//// [a.ts]
export const a = "a";
//// [a.js]
export var a = "a";
//// [mainJs.js]
import("./a");
var _ = require("./a"); // No resolution
_.a; // any
export {};
//// [main.js]
export {};
|