-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: make it works well with latest Deno
- Loading branch information
1 parent
ae79f26
commit 3ef86cf
Showing
3 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"compilerOptions": { | ||
"experimentalDecorators": true, | ||
"emitDecoratorMetadata": true, | ||
"jsx": "react-jsx", | ||
"jsxImportSource": "preact" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export { DanetApplication, type HttpContext } from 'https://deno.land/x/danet/mod.ts'; | ||
export { DanetApplication, type ExecutionContext } from 'https://deno.land/x/danet/mod.ts'; | ||
export { MetadataHelper } from 'https://deno.land/x/danet/src/metadata/mod.ts'; | ||
export { NotValidBodyException } from 'https://deno.land/x/danet/src/exception/http/exceptions.ts'; | ||
export { createParamDecorator, type OptionsResolver } from 'https://deno.land/x/danet/src/router/controller/params/decorators.ts'; |