0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-21 18:18:57 +01:00
hono/tsconfig.build.json

23 lines
443 B
JSON
Raw Normal View History

{
"extends": "./tsconfig.json",
"compilerOptions": {
2022-09-15 03:04:45 +02:00
"module": "ES2020",
"rootDir": "./src/",
"outDir": "./dist/types/",
"noUnusedLocals": true,
"noUnusedParameters": true,
},
"include": [
"src/**/*.ts",
"src/**/*.mts"
],
"exclude": [
2022-07-02 08:09:45 +02:00
"src/mod.ts",
"src/helper.ts",
2022-07-10 17:13:29 +02:00
"src/middleware.ts",
"src/deno/**/*.ts",
"src/test-utils/*.ts",
"src/**/*.test.ts",
"src/**/*.test.tsx"
]
}