mirror of
https://github.com/honojs/hono.git
synced 2024-12-01 11:51:01 +01:00
1eb49b8d96
* refactor: support new `@cloudflare/worker-types` * do not attach crypto to global * denoify ignore serve-static for cloudlfare * ignore the utility for cloudflare * import types
31 lines
643 B
JSON
31 lines
643 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"declaration": true,
|
|
"moduleResolution": "Node",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"lib": [
|
|
"WebWorker"
|
|
],
|
|
"types": [
|
|
"jest",
|
|
"node"
|
|
],
|
|
"jsx": "react",
|
|
"jsxFactory": "jsx",
|
|
"jsxFragmentFactory": "Fragment",
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.mts",
|
|
"src/**/*.test.ts"
|
|
],
|
|
} |