encoding/jsonschema: use astutil.Sanitize to handle imports

Also prepares for Issue #378.

Change-Id: Ieff531fdf6d7bdfa1741c95e7ff87d31e39bf1a9
Reviewed-on: https://cue-review.googlesource.com/c/cue/+/6140
Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>
diff --git a/encoding/jsonschema/jsonschema.go b/encoding/jsonschema/jsonschema.go
index 00027c6..9e81b73 100644
--- a/encoding/jsonschema/jsonschema.go
+++ b/encoding/jsonschema/jsonschema.go
@@ -41,10 +41,7 @@
 // The generated CUE schema is guaranteed to deem valid any value that is
 // a valid instance of the source JSON schema.
 func Extract(data *cue.Instance, cfg *Config) (f *ast.File, err error) {
-	d := &decoder{
-		cfg:     cfg,
-		imports: map[string]*ast.Ident{},
-	}
+	d := &decoder{cfg: cfg}
 
 	f = d.decode(data.Value())
 	if d.errs != nil {