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
|
//// [/a/b/c/first/shared.ts]
class A {}
export = A
//// [/a/b/c/first/second/class_a.ts]
import Shared = require('../shared');
import C = require('../../third/class_c');
class B {}
export = B;
//// [/a/b/c/third/class_c.ts]
import Shared = require('../first/shared');
class C {}
export = C;
Program files::
/a/b/c/first/shared.ts
/a/b/c/third/class_c.ts
class_a.ts
Syntactic Diagnostics::
Semantic Diagnostics::
getSourceFile by ../../../c/third/class_c.ts: /a/b/c/third/class_c.ts
|