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

10 lines
485 B
Plaintext
Raw Normal View History

tests/cases/compiler/externalModuleWithoutCompilerFlag1.ts(3,17): error TS1148: Cannot compile external modules unless the '--module' flag is provided.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/externalModuleWithoutCompilerFlag1.ts (1 errors) ====
// Not on line 0 because we want to verify the error is placed in the appropriate location.
export module M {
~
!!! error TS1148: Cannot compile external modules unless the '--module' flag is provided.
}