0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-21 18:18:57 +01:00
hono/tsconfig.build.json
watany 7f0e51a389
chore(vitest/tsconfig): bump vitest and update tsconfig.build.json (#1851)
* update vitest

* vitest typecheck

* ignore vitest setting in build

* Revert "vitest typecheck"
2023-12-25 11:46:37 +09:00

23 lines
443 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "ES2020",
"rootDir": "./src/",
"outDir": "./dist/types/",
"noUnusedLocals": true,
"noUnusedParameters": true,
},
"include": [
"src/**/*.ts",
"src/**/*.mts"
],
"exclude": [
"src/mod.ts",
"src/helper.ts",
"src/middleware.ts",
"src/deno/**/*.ts",
"src/test-utils/*.ts",
"src/**/*.test.ts",
"src/**/*.test.tsx"
]
}