denoland / deno_graph

The module graph logic for Deno CLI
https://docs.rs/deno_graph
MIT License
114 stars 39 forks source link

Allow all template literals in non-const positions for slow types #457

Open lucacasonato opened 6 months ago

lucacasonato commented 6 months ago

This always results in a string type in non const positions, so we can always allow it.

We can choose to either leave it or emit a string type. TBD.

export let = `asd ${"asd"}`;