mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
43c8c1cc6e
This allows people to use imports like: ```ts import "./app.css"; ``` ...with `deno check` in systems where there's a bundle step (ex. Vite). This will still error when using it with `deno run` or if the referenced file does not exist. See test cases for behaviour.
1 line
27 B
TypeScript
1 line
27 B
TypeScript
import "./not_exists.css";
|