TypeScript/tests/baselines/reference/taggedTemplateWithoutDeclaredHelper.errors.txt
Jack Bates 6aaefe41fe
Remove vestigial baselines (#45916)
* Remove vestigial baselines

* Update Baselines and/or Applied Lint Fixes

* Add --quiet

Co-authored-by: TypeScript Bot <typescriptbot@microsoft.com>
2021-09-16 12:49:47 -07:00

15 lines
662 B
Plaintext

tests/cases/compiler/foo.ts(5,23): error TS2343: This syntax requires an imported helper named '__makeTemplateObject' which does not exist in 'tslib'. Consider upgrading your version of 'tslib'.
==== tests/cases/compiler/foo.ts (1 errors) ====
function id<T>(x: T) {
return x;
}
export const result = id `hello world`;
~~~~~~~~~~~~~~~~
!!! error TS2343: This syntax requires an imported helper named '__makeTemplateObject' which does not exist in 'tslib'. Consider upgrading your version of 'tslib'.
==== tests/cases/compiler/node_modules/tslib/index.d.ts (0 errors) ====
export { };