question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Error when i start script with --no-check flag

See original GitHub issue

Issue

Setup:

  • Deno Version: 1.6.2
  • v8 Version: 8.8.278.2
  • Typescript Version: 4.1.3
  • Opine Version: 1.0.0

I’m getting an error while i disable ts check for my app

Details

command : deno run -A --no-check serve.ts output :

error: Uncaught SyntaxError: The requested module './CtxLike.ts' does not provide an export named 'CtxLike'
export { CtxLike } from "./CtxLike.ts";
~~~~~~~
    at <anonymous> (<https://deno.land/x/evt@v1.9.11/lib/types/interfaces/index.ts>:5:1)

code i use :

import { opine } from "https://deno.land/x/opine@1.0.0/mod.ts";

const app = opine();

app.get("/", function(req, res) {
  res.send("Hello World");
});

app.listen(3000);

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:7 (3 by maintainers)

github_iconTop GitHub Comments

2reactions
4ovcommented, Dec 29, 2020

@garronej @cmorten i really appreciate it. thank you all ♥️

1reaction
cmortencommented, Dec 29, 2020

Nice one @garronej, you’re a ⭐️!

Gosh that does sounds exhausting 😞

I’ll get things sorted from this end

Read more comments on GitHub >

github_iconTop Results From Across the Web

Using both unstable and --no-check at same time · Issue #7571
hey i'm using deno v1.4.1 , as from now onwards deno has enabled strict type checking in all typescript file, i am also...
Read more >
TFS - Database deploy - Setting CHECK or NOCHECK on ...
It looks like "WITH CHECK" is the default for new foreign keys and "WITH NOCHECK" is the default for re-enabling foreign keys.
Read more >
Fix for PowerShell Script cannot be loaded because running ...
On trying to run a PowerShell script from the PowerShell console, received this error message: “File C:\temp\GenerateRpt.ps1 cannot be ...
Read more >
Is there a shorter version of wget --no-check-certificate option?
Type that into the command line and after that, every time you run wgetncc it will be a shortcut to wget --no-check-certificate.
Read more >
Avoiding Constraint Violations during SQL Server Deployments
We'll assume that the team want a working database with data in it, starting from their scripts in source control. We'll assume that...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found