frontend/.pnpm-store/v3/files/a0/5733983f581d5f220a91530c1c91abc8382af3535fd8ec7da9dc4b0a600daeed4b50ada6477250e37edbb78336c497f95640feaf58a0080261b5f5831116c6

12 lines
390 B
Plaintext

import ts from 'typescript';
import type { Transformer, Options } from '../types';
export declare function loadTsconfig(compilerOptionsJSON: any, filename: string, tsOptions: Options.Typescript): {
errors: any[];
options: any;
} | {
errors: ts.Diagnostic[];
options: ts.CompilerOptions;
};
declare const transformer: Transformer<Options.Typescript>;
export { transformer };