We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deno check
compilerOptions.types
In a vite project I've added a global.d.ts to compilerOptions.types with the following content:
vite
global.d.ts
declare module "*.module.css" { const css: Record<string, string>; export default css; }
This is picked up in the LSP, but seemingly not when running deno check.
deno check main.ts
Version: Deno 2.2.2
The text was updated successfully, but these errors were encountered:
The issue is actually the ambient module declaration. Basically this needs #27855 but for check (that PR was only the LSP)
Sorry, something went wrong.
No branches or pull requests
In a
vite
project I've added aglobal.d.ts
tocompilerOptions.types
with the following content:This is picked up in the LSP, but seemingly not when running
deno check
.Steps to reproduce
deno check main.ts
Version: Deno 2.2.2
The text was updated successfully, but these errors were encountered: