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

18 lines
449 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-04-23 19:44:44 +02: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-04-23 19:44:44 +02:00
==== tests/cases/compiler/es6-umd2.ts (0 errors) ====
export class A
{
constructor ()
{
}
public B()
{
return 42;
}
}