No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

14 líneas
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. }