TypeScript/tests/baselines/reference/umdDependencyCommentName2.errors.txt

13 lines
430 B
Plaintext
Raw Normal View History

2015-04-27 03:31:47 +02:00
tests/cases/compiler/umdDependencyCommentName2.ts(5,21): error TS2307: Cannot find module 'm2'.
2015-04-23 19:44:44 +02:00
==== tests/cases/compiler/umdDependencyCommentName2.ts (1 errors) ====
///<amd-dependency path='bar' name='b'/>
///<amd-dependency path='foo'/>
///<amd-dependency path='goo' name='c'/>
import m1 = require("m2")
~~~~
2015-04-27 03:31:47 +02:00
!!! error TS2307: Cannot find module 'm2'.
2015-04-23 19:44:44 +02:00
m1.f();