Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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;
- }
|