mirror of
https://github.com/honojs/hono.git
synced 2024-11-28 17:22:54 +01:00
cb4f3d6282
* feat(basic-auth): basic-auth middleware * fix(dep): update yarn.lock * refactor(review): resolove some comments
26 lines
486 B
JSON
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"
|
|
]
|
|
}
|