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

30 lines
663 B
JSON
Raw Normal View History

{
"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"
],
2022-06-07 12:03:42 +02:00
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
},
"include": [
"src/**/*.ts",
2022-05-27 10:28:07 +02:00
"src/**/*.mts",
"src/**/*.test.ts"
],
}