Errors in boilerplate code?
After running
Why might I be getting these errors?
1. Question: vite.config.ts error
By default, I get the following error from my
2. Question: JSX error
Also by default, I get the JSX error of:
(My apologies if these have already been answered--I just haven't been able to find related anwers.)
deno run --allow-read --allow-write --allow-env npm:create-vite-extra@latest I see the following errors. (It's important to note that on another computer, there are no errors whatsoever.)Why might I be getting these errors?
1. Question: vite.config.ts error
By default, I get the following error from my
vite.config.ts file. Is there a missing step upon installation that needs to be run? 2. Question: JSX error
Also by default, I get the JSX error of:
'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.ts(2686). I understand that adding the import React from "react" statement would fix this, but I also know we don't need that statement in React anymore. (My apologies if these have already been answered--I just haven't been able to find related anwers.)
