diff --git a/tests/baselines/reference/tsxAttributeResolution9.symbols b/tests/baselines/reference/tsxAttributeResolution9.symbols
deleted file mode 100644
index 081482d5d47..00000000000
--- a/tests/baselines/reference/tsxAttributeResolution9.symbols
+++ /dev/null
@@ -1,47 +0,0 @@
-=== tests/cases/conformance/jsx/react.d.ts ===
-
-declare module JSX {
->JSX : Symbol(JSX, Decl(react.d.ts, 0, 0))
-
- interface Element { }
->Element : Symbol(Element, Decl(react.d.ts, 1, 20))
-
- interface IntrinsicElements {
->IntrinsicElements : Symbol(IntrinsicElements, Decl(react.d.ts, 2, 22))
- }
- interface ElementAttributesProperty {
->ElementAttributesProperty : Symbol(ElementAttributesProperty, Decl(react.d.ts, 4, 2))
-
- props;
->props : Symbol(props, Decl(react.d.ts, 5, 38))
- }
-}
-
-interface Props {
->Props : Symbol(Props, Decl(react.d.ts, 8, 1))
-
- foo: string;
->foo : Symbol(foo, Decl(react.d.ts, 10, 17))
-}
-
-=== tests/cases/conformance/jsx/file.tsx ===
-export class MyComponent {
->MyComponent : Symbol(MyComponent, Decl(file.tsx, 0, 0))
-
- render() {
->render : Symbol(render, Decl(file.tsx, 0, 26))
- }
-
- props: { foo: string; }
->props : Symbol(props, Decl(file.tsx, 2, 3))
->foo : Symbol(foo, Decl(file.tsx, 4, 10))
-}
-
-; // ok
->MyComponent : Symbol(MyComponent, Decl(file.tsx, 0, 0))
->foo : Symbol(unknown)
-
-; // should be an error
->MyComponent : Symbol(MyComponent, Decl(file.tsx, 0, 0))
->foo : Symbol(unknown)
-
diff --git a/tests/baselines/reference/tsxAttributeResolution9.types b/tests/baselines/reference/tsxAttributeResolution9.types
deleted file mode 100644
index 1b2c6d42389..00000000000
--- a/tests/baselines/reference/tsxAttributeResolution9.types
+++ /dev/null
@@ -1,49 +0,0 @@
-=== tests/cases/conformance/jsx/react.d.ts ===
-
-declare module JSX {
->JSX : any
-
- interface Element { }
->Element : Element
-
- interface IntrinsicElements {
->IntrinsicElements : IntrinsicElements
- }
- interface ElementAttributesProperty {
->ElementAttributesProperty : ElementAttributesProperty
-
- props;
->props : any
- }
-}
-
-interface Props {
->Props : Props
-
- foo: string;
->foo : string
-}
-
-=== tests/cases/conformance/jsx/file.tsx ===
-export class MyComponent {
->MyComponent : MyComponent
-
- render() {
->render : () => void
- }
-
- props: { foo: string; }
->props : { foo: string; }
->foo : string
-}
-
-; // ok
-> : JSX.Element
->MyComponent : typeof MyComponent
->foo : any
-
-; // should be an error
-> : JSX.Element
->MyComponent : typeof MyComponent
->foo : any
-