Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

14 Zeilen
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. }