Skip to content

Commit

Permalink
Add "verbatimModuleSyntax": true
Browse files Browse the repository at this point in the history
  • Loading branch information
timonson committed Jun 30, 2023
1 parent 05137b7 commit 6ac091d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"compilerOptions": {
"lib": ["esnext", "dom", "dom.iterable", "deno.ns"],
"strict": true,
"verbatimModuleSyntax": false,
"verbatimModuleSyntax": true,
"useUnknownInCatchVariables": true,
"noImplicitOverride": false,
"checkJs": true
Expand Down
4 changes: 2 additions & 2 deletions handler.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { type ConnInfo, type Handler } from "./deps.ts";
import { compose } from "./composition.ts";
import { Middleware } from "./route.ts";
import { Context } from "./context.ts";
import { type Middleware } from "./route.ts";
import { type Context } from "./context.ts";

function setXResponseTimeHeader<C extends Context>(ctx: C, startTime: number) {
const ms = Date.now() - startTime;
Expand Down

0 comments on commit 6ac091d

Please sign in to comment.