testtest/node_modules/ts-node/dist/tsconfig-schema.d.ts
AlexVeeBee 30ce160b8f
Some checks failed
node-js / Test (14.x) (push) Failing after 18s
Did something
2024-02-27 00:32:49 +00: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;
}