We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a8211a commit 47918b2Copy full SHA for 47918b2
src/deno_json/ts.rs
@@ -106,6 +106,7 @@ static ALLOWED_COMPILER_OPTIONS: phf::Set<&'static str> = phf::phf_set! {
106
"noUncheckedIndexedAccess",
107
"noUnusedLocals",
108
"noUnusedParameters",
109
+ "rootDirs",
110
"strict",
111
"strictBindCallApply",
112
"strictBuiltinIteratorReturn",
src/workspace/resolver.rs
@@ -446,7 +446,7 @@ pub enum WorkspaceResolverDiagnostic<'a> {
446
impl fmt::Display for WorkspaceResolverDiagnostic<'_> {
447
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
448
match self {
449
- Self::ImportMap(d) => d.fmt(f),
+ Self::ImportMap(d) => write!(f, "Import map: {d}"),
450
Self::CompilerOptionsRootDirs(d) => d.fmt(f),
451
}
452
0 commit comments