TypeScript/tests/baselines/reference/nameWithFileExtension.errors.txt
2014-09-11 16:11:08 -07:00

9 lines
346 B
Plaintext

==== tests/cases/conformance/externalModules/foo_1.ts (1 errors) ====
import foo = require('./foo_0.js');
~~~~~~~~~~~~
!!! error TS2307: Cannot find external module './foo_0.js'.
var x = foo.foo + 42;
==== tests/cases/conformance/externalModules/foo_0.ts (0 errors) ====
export var foo = 42;