0d302893264834c125fba2784d2d3c7b67ef000e.svn-base
463 Bytes
import { TsConfigOptions } from '.';
/**
* 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://github.com/TypeStrong/ts-node#configuration-options
*
* ts-node offers TypeScript execution and REPL for node.js, with source map support.
*/
'ts-node': TsConfigOptions;
}