Nayeem Rahman

Results 37 issues of Nayeem Rahman

As in, the following should be valid: ```ts // deno-lint-ignore no-explicit-any { let a: any; let b: any; let c: any; } ``` This is taken from Rust, `#[rustfmt::skip]` and...

feature

https://doc.deno.land/builtin/stable: ![image](https://user-images.githubusercontent.com/29990554/102645306-2e06ed00-415a-11eb-93d9-553dd3be56dd.png) -> ![image](https://user-images.githubusercontent.com/29990554/102645333-38c18200-415a-11eb-9ee4-9232d58e19a8.png) Adjusting to client width isn't feasible, I think these should be wrapped to an 80 column limit with `deno fmt`/`dprint` on the server side. If the...

### Describe the bug A namespace with only `declare`d values is treated as type-only and elided at transpilation, it should be transpiled to an empty namespace. ### Input code ```typescript...

C-bug

[](https://issuehunt.io/r/clap-rs/clap/issues/1794) ### Rust Version `rustc 1.42.0 (b8cedc004 2020-03-09)` ### Code ```rust use clap; use clap::Arg; use clap::ArgGroup; fn main() { let app = clap::App::new("hello") .bin_name("deno") .arg( Arg::with_name("option1") .long("option1") .takes_value(false), )...

C-bug
S-waiting-on-decision
A-help
:dollar: Funded on Issuehunt

For dynamic imports with non-static-string specifiers like `await import("./" + "foo.ts")`, we do a separate [type check at runtime](https://github.com/denoland/deno/blob/3d2394954c61a434bd6227ad3e0c5dea38361b6a/cli/proc_state.rs#L519) with the imported module as the root. Users write these when...

stale

If your library has an exported subpath such that the following `package.json` is generated: ```json { "exports": { "./subpath": { "import": "./esm/subpath/index.js", "require": "./script/subpath/index.js", "types": "./types/subpath/index.d.ts" } } } ```...

Towards #247. Implements the proposed API on the rust side while keeping a legacy serialization layer to preserve `deno info --json`. Essentially dependencies like this: ```ts { dependencies: [ {...

The current `Dependency` definition incurs an extra layer of depth to support an uncommon case like `// @deno-types`, we can flatten it with these types: ```ts export type Dependency =...

Fixes #20582. When a `deno.json` file is loaded, read `compilerOptions.jsxImportSource` and queue a task to cache it.