UNPKG

464 BTypeScriptView Raw
1import type { TsConfigOptions } from './index';
2/**
3 * tsconfig schema which includes "ts-node" options.
4 * @allOf [{"$ref": "https://schemastore.azurewebsites.net/schemas/json/tsconfig.json"}]
5 */
6export interface TsConfigSchema {
7 /**
8 * ts-node options. See also: https://typestrong.org/ts-node/docs/configuration
9 *
10 * ts-node offers TypeScript execution and REPL for node.js, with source map support.
11 */
12 'ts-node': TsConfigOptions;
13}