create a "tsconfig.json" file, based on your "deno.json" configuration file.

  • Parameters

    • deno_json_path: string = default_deno_json_path

      the path to your "deno.json" file. it could be either an absolute path, or a path relative to your current working directory (Deno.cwd()).

    • overrides: Partial<TsConfigJson> = {}

      provide additional overrides to apply to your output "tsconfig.json" like object.

    Returns Promise<{
        $schema: string;
    } & TsConfigJson>

    a "tsconfig.json" like javascript object.