/website/js/website/js for this project) and Deno's type checking for other TypeScript files.tsconfig.jsontsconfig.json file, it didn't do anything. If I add // @ts-check// @ts-check to the top of the JS files I want to check, I get incorrect error messages from deno-tsdeno-ts.documentdocument is and it's just fine with identifying the type of the uiui variable as StringString when it should be ElementElement. It recommends adding something like "lib": ["DOM"]"lib": ["DOM"] to compilerOptionscompilerOptions in the config, but I tried that and it's pretty clear that nothing it's not reading tsconfig.jsontsconfig.json.Cannot find name 'document'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'.
tsts, all make sense.// @ts-check// @ts-check at the top of the file, there are no error messages. So, Deno's not checking it but it's preventing tsts from checking it, too.
Join the Discord to ask follow-up questions and connect with the community