0
0
mirror of https://github.com/honojs/hono.git synced 2024-12-01 11:51:01 +01:00
hono/tsconfig.json
Yusuke Wada 1eb49b8d96
refactor: support new @cloudflare/worker-types (#673)
* 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
2022-11-23 07:27:42 +09:00

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"
],
}