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

10 lines
456 B
Text
Raw Normal View History

tests/cases/conformance/scanner/ecmascript5/scannerEnum1.ts(1,17): error TS1148: Cannot compile external modules unless the '--module' flag is provided.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/scanner/ecmascript5/scannerEnum1.ts (1 errors) ====
export enum CodeGenTarget {
~~~~~~~~~~~~~
!!! error TS1148: Cannot compile external modules unless the '--module' flag is provided.
2014-07-13 01:04:16 +02:00
ES3 = 0,
ES5 = 1,
}