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

13 lines
604 B
Plaintext
Raw Normal View History

2015-04-29 02:13:47 +02:00
error TS1204: Cannot compile modules into 'commonjs', 'amd', 'system' or 'umd' when targeting 'ES6' or higher.
2015-03-18 01:05:30 +01:00
2015-04-29 02:13:47 +02:00
!!! error TS1204: Cannot compile modules into 'commonjs', 'amd', 'system' or 'umd' when targeting 'ES6' or higher.
2015-03-18 01:05:30 +01:00
==== tests/cases/compiler/es6ImportNameSpaceImport_0.ts (0 errors) ====
export var a = 10;
==== tests/cases/compiler/es6ImportNameSpaceImport_1.ts (0 errors) ====
import * as nameSpaceBinding from "es6ImportNameSpaceImport_0";
var x = nameSpaceBinding.a;
import * as nameSpaceBinding2 from "es6ImportNameSpaceImport_0"; // elide this