0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-21 18:18:57 +01:00
hono/tsconfig.json
2022-06-12 08:20:31 +09:00

30 lines
663 B
JSON

{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"declaration": true,
"moduleResolution": "Node",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"strictPropertyInitialization": false,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"types": [
"jest",
"node",
"@cloudflare/workers-types"
],
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
},
"include": [
"src/**/*.ts",
"src/**/*.mts",
"src/**/*.test.ts"
],
}