Add Deno config
This commit is contained in:
parent
71ae88f152
commit
6af6a3db28
2 changed files with 5 additions and 1 deletions
5
deno.jsonc
Normal file
5
deno.jsonc
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"noImplicitAny": false
|
||||||
|
}
|
||||||
|
}
|
|
@ -16,7 +16,6 @@ server.router.get('/static/{file*}', (r, h) => {
|
||||||
|
|
||||||
|
|
||||||
routes.forEach(route => {
|
routes.forEach(route => {
|
||||||
// console.log(`Adding ${route.route}`)
|
|
||||||
server.route({ method: route.method, handler: route.handler, path: route.route })
|
server.route({ method: route.method, handler: route.handler, path: route.route })
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue