TypeScript/tests/baselines/reference/es6-declaration-amd.errors.txt

18 lines
453 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-12 06:53:36 +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-12 06:53:36 +01:00
==== tests/cases/compiler/es6-declaration-amd.ts (0 errors) ====
class A
{
constructor ()
{
}
public B()
{
return 42;
}
}