Add Deno config

This commit is contained in:
Joshua 2022-09-18 14:06:57 +02:00
parent 71ae88f152
commit 6af6a3db28
2 changed files with 5 additions and 1 deletions

5
deno.jsonc Normal file
View file

@ -0,0 +1,5 @@
{
"compilerOptions": {
"noImplicitAny": false
}
}

View file

@ -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 })
}) })