|
- import { BaseError } from 'make-error';
- import * as _ts from 'typescript';
-
- export declare const REGISTER_INSTANCE: unique symbol;
-
- declare global {
- namespace NodeJS {
- interface Process {
- [REGISTER_INSTANCE]?: Register;
- }
- }
- }
-
- export interface TSCommon {
- version: typeof _ts.version;
- sys: typeof _ts.sys;
- ScriptSnapshot: typeof _ts.ScriptSnapshot;
- displayPartsToString: typeof _ts.displayPartsToString;
- createLanguageService: typeof _ts.createLanguageService;
- getDefaultLibFilePath: typeof _ts.getDefaultLibFilePath;
- getPreEmitDiagnostics: typeof _ts.getPreEmitDiagnostics;
- flattenDiagnosticMessageText: typeof _ts.flattenDiagnosticMessageText;
- transpileModule: typeof _ts.transpileModule;
- ModuleKind: typeof _ts.ModuleKind;
- ScriptTarget: typeof _ts.ScriptTarget;
- findConfigFile: typeof _ts.findConfigFile;
- readConfigFile: typeof _ts.readConfigFile;
- parseJsonConfigFileContent: typeof _ts.parseJsonConfigFileContent;
- formatDiagnostics: typeof _ts.formatDiagnostics;
- formatDiagnosticsWithColorAndContext: typeof _ts.formatDiagnosticsWithColorAndContext;
- }
-
- export declare const VERSION: any;
-
- export interface CreateOptions {
-
-
- dir?: string;
-
-
- emit?: boolean;
-
-
- scope?: boolean;
-
-
- pretty?: boolean;
-
-
- transpileOnly?: boolean;
-
-
- typeCheck?: boolean;
-
-
- compilerHost?: boolean;
-
-
- logError?: boolean;
-
-
- files?: boolean;
-
-
- compiler?: string;
-
-
- ignore?: string[];
-
-
- project?: string;
-
-
- skipProject?: boolean;
-
-
- skipIgnore?: boolean;
-
-
- compilerOptions?: object;
-
-
- ignoreDiagnostics?: Array<number | string>;
- readFile?: (path: string) => string | undefined;
- fileExists?: (path: string) => boolean;
- transformers?: _ts.CustomTransformers | ((p: _ts.Program) => _ts.CustomTransformers);
- }
- /**
- * Options for registering a TypeScript compiler instance globally.
- */
- export interface RegisterOptions extends CreateOptions {
- /**
- * Re-order file extensions so that TypeScript imports are preferred.
- *
- * @default false
- */
- preferTsExts?: boolean;
- }
- /**
- * Must be an interface to support `typescript-json-schema`.
- */
- export interface TsConfigOptions extends Omit<RegisterOptions, 'transformers' | 'readFile' | 'fileExists' | 'skipProject' | 'project' | 'dir'> {
- }
- /**
- * Information retrieved from type info check.
- */
- export interface TypeInfo {
- name: string;
- comment: string;
- }
- /**
- * Default register options, including values specified via environment
- * variables.
- */
- export declare const DEFAULTS: RegisterOptions;
- /**
- * Split a string array of values.
- */
- export declare function split(value: string | undefined): string[] | undefined;
- /**
- * Parse a string as JSON.
- */
- export declare function parse(value: string | undefined): object | undefined;
- /**
- * Replace backslashes with forward slashes.
- */
- export declare function normalizeSlashes(value: string): string;
- /**
- * TypeScript diagnostics error.
- */
- export declare class TSError extends BaseError {
- diagnosticText: string;
- diagnosticCodes: number[];
- name: string;
- constructor(diagnosticText: string, diagnosticCodes: number[]);
- }
- /**
- * Return type for registering `ts-node`.
- */
- export interface Register {
- ts: TSCommon;
- config: _ts.ParsedCommandLine;
- options: RegisterOptions;
- enabled(enabled?: boolean): boolean;
- ignored(fileName: string): boolean;
- compile(code: string, fileName: string, lineOffset?: number): string;
- getTypeInfo(code: string, fileName: string, position: number): TypeInfo;
- }
- /**
- * Register TypeScript compiler instance onto node.js
- */
- export declare function register(opts?: RegisterOptions): Register;
- /**
- * Create TypeScript compiler instance.
- */
- export declare function create(rawOptions?: CreateOptions): Register;
|