mirror of
https://github.com/honojs/hono.git
synced 2024-11-22 02:27:49 +01:00
24 lines
471 B
JSON
24 lines
471 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",
|
||
|
"@cloudflare/workers-types"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"src/**/*.test.ts"
|
||
|
]
|
||
|
}
|