TypeScript/tests/baselines/reference/es6-umd2.errors.txt

25 lines
715 B
Text
Raw Normal View History

<<<<<<< HEAD
2015-04-27 03:31:47 +02:00
error TS1204: Cannot compile modules into 'amd', 'commonjs' or 'umd' when targeting 'ES6' or higher.
2015-04-23 19:44:44 +02:00
2015-04-27 03:31:47 +02:00
!!! error TS1204: Cannot compile modules into 'amd', 'commonjs' or 'umd' when targeting 'ES6' or higher.
=======
2015-04-24 05:50:35 +02:00
error TS1204: Cannot compile external modules into 'commonjs', 'amd', 'system' or 'umd' when targeting 'ES6' or higher.
2015-04-23 19:44:44 +02:00
2015-04-24 05:50:35 +02:00
!!! error TS1204: Cannot compile external modules into 'commonjs', 'amd', 'system' or 'umd' when targeting 'ES6' or higher.
>>>>>>> master
2015-04-23 19:44:44 +02:00
==== tests/cases/compiler/es6-umd2.ts (0 errors) ====
export class A
{
constructor ()
{
}
public B()
{
return 42;
}
}