We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2aa3c7 commit 55284fcCopy full SHA for 55284fc
internal/bundled/generate.go
@@ -14,6 +14,7 @@ import (
14
15
"github.com/microsoft/typescript-go/internal/ast"
16
"github.com/microsoft/typescript-go/internal/core"
17
+ "github.com/microsoft/typescript-go/internal/locale"
18
"github.com/microsoft/typescript-go/internal/parser"
19
"github.com/microsoft/typescript-go/internal/repo"
20
"github.com/microsoft/typescript-go/internal/tspath"
@@ -150,7 +151,7 @@ func readLibs() []lib {
150
151
152
if len(diags) > 0 {
153
for _, diag := range diags {
- log.Printf("%s", diag.Message())
154
+ log.Printf("%s", diag.Localize(locale.Default))
155
}
156
log.Fatalf("failed to parse libs.json")
157
0 commit comments