0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-24 11:07:29 +01:00
hono/tsconfig.json
Yusuke Wada 8627010094
refactor(types): refactor and add tests for checking Types (#615)
* refactor(types): refactor and add tests for checking Types

* remove unused

* uncomment

* use `Handler` in validator middleware

* remove unused

* create `src/validator` dir and move some files into it

* add the case that the context is in `validator`

* rename `D` to `S`
2022-10-23 08:10:00 +09:00

29 lines
640 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,
"types": [
"jest",
"node",
"@cloudflare/workers-types"
],
"jsx": "react",
"jsxFactory": "jsx",
"jsxFragmentFactory": "Fragment",
},
"include": [
"src/**/*.ts",
"src/**/*.mts",
"src/**/*.test.ts"
],
}