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.

14 lines
463B

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