TypeScript/tests/cases/fourslash/codeFixEnableJsxFlag_blankCompilerOptionsTsConfig.ts

24 lines
429 B
TypeScript

/// <reference path='fourslash.ts' />
// @Filename: /dir/a.tsx
////export const Component = () => <></>;
// @Filename: /dir/tsconfig.json
////{
//// "compilerOptions": {
//// }
////}
goTo.file("/dir/a.tsx");
verify.codeFix({
description: "Enable the '--jsx' flag in your configuration file",
newFileContent: {
"/dir/tsconfig.json":
`{
"compilerOptions": {
"jsx": "react"
}
}`,
},
});