mirror of
https://github.com/honojs/hono.git
synced 2024-11-21 18:18:57 +01:00
8627010094
* 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`
20 lines
364 B
JSON
20 lines
364 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "ES2020",
|
|
"rootDir": "./src/",
|
|
"outDir": "./dist/",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.mts"
|
|
],
|
|
"exclude": [
|
|
"src/mod.ts",
|
|
"src/middleware.ts",
|
|
"src/deno/**/*.ts",
|
|
"src/**/*.test.ts"
|
|
]
|
|
} |