1
0
mirror of https://github.com/oven-sh/setup-bun.git synced 2025-04-15 07:52:43 +08:00
2023-02-22 17:47:24 -08:00

14 lines
464 B
TypeScript

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;
}