Icard/angular-clarity-master(work.../node_modules/ts-node/dist/tsconfig-schema.d.ts

14 lines
464 B
TypeScript
Raw Permalink Normal View History

2024-07-16 15:23:22 +00:00
import type { TsConfigOptions } from './index';
/**
* tsconfig schema which includes "ts-node" options.
* @allOf [{"$ref": "https://schemastore.azurewebsites.net/schemas/json/tsconfig.json"}]
*/
export interface TsConfigSchema {
/**
* ts-node options. See also: https://typestrong.org/ts-node/docs/configuration
*
* ts-node offers TypeScript execution and REPL for node.js, with source map support.
*/
'ts-node': TsConfigOptions;
}