mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 18:49:30 +08:00
11 lines
392 B
Text
11 lines
392 B
Text
import ts from 'typescript';
|
|
import type { Transformer, Options } from '../types';
|
|
export declare function loadTsconfig(compilerOptionsJSON: any, filename: string, tsOptions: Options.Typescript): {
|
|
errors: never[];
|
|
options: any;
|
|
} | {
|
|
errors: ts.Diagnostic[];
|
|
options: ts.CompilerOptions;
|
|
};
|
|
declare const transformer: Transformer<Options.Typescript>;
|
|
export { transformer };
|