We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a16396 commit 00d9ac7Copy full SHA for 00d9ac7
test/tests/transformer/general.test.ts
@@ -35,8 +35,8 @@ describe(`Transformer -> General Tests`, () => {
35
let originalFiles: EmittedFiles = {};
36
let transformedFiles: EmittedFiles = {};
37
38
- const program = createTsProgram({ tsInstance, tsConfigFile, disablePlugin: true });
39
- const programWithTransformer = createTsProgram({ tsInstance, tsConfigFile });
+ const program = createTsProgram({ tsInstance: tsInstance as typeof ts, tsConfigFile, disablePlugin: true });
+ const programWithTransformer = createTsProgram({ tsInstance: tsInstance as typeof ts, tsConfigFile });
40
const fileNames = program.getRootFileNames() as string[];
41
42
beforeAll(() => {
0 commit comments