0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-28 17:22:54 +01:00
hono/tsconfig.json
Minghe cb4f3d6282
feat(basic-auth): basic-auth middleware (#28)
* feat(basic-auth): basic-auth middleware

* fix(dep): update yarn.lock

* refactor(review): resolove some comments
2022-01-07 17:44:08 +09:00

26 lines
486 B
JSON

{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"strictPropertyInitialization": false,
"strictNullChecks": false,
"types": [
"jest",
"node",
"@cloudflare/workers-types"
]
},
"include": [
"src/**/*"
],
"exclude": [
"src/**/*.test.ts"
]
}