0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 02:27:49 +01:00
hono/tsconfig.json
Yusuke Wada c703dd3726
fix(types): don't use webworker types (#1548)
* fix(types): don't use webworker types

* denoify
2023-10-06 05:14:16 +09:00

27 lines
559 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"declaration": true,
"moduleResolution": "Node",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"types": [
"jest",
"node"
],
"jsx": "react",
"jsxFactory": "jsx",
"jsxFragmentFactory": "Fragment",
},
"include": [
"src/**/*.ts",
"src/**/*.mts",
"src/**/*.test.ts",
"src/**/*.test.tsx"
],
}