tsconfig-schema.d.ts 463 B

12345678910111213
  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. }