Skip to content

Commit 30d36c2

Browse files
committed
fix: fix filter to remove module for well known types
1 parent 89b0e02 commit 30d36c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generator/template.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919

2020
const tmpl = `
2121
{{define "dependencies"}}
22-
{{range .}}import * as {{.ModuleIdentifier}} from "{{.SourceFile}}"
22+
{{range removeWellKnownTypes .}}import * as {{.ModuleIdentifier}} from "{{.SourceFile}}"
2323
{{end}}{{end}}
2424
2525
{{define "enums"}}

0 commit comments

Comments
 (0)