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

27 lines
559 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2020",
"declaration": true,
"moduleResolution": "Node",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"types": [
"jest",
"node"
],
2022-06-07 12:03:42 +02:00
"jsx": "react",
"jsxFactory": "jsx",
"jsxFragmentFactory": "Fragment",
},
"include": [
"src/**/*.ts",
2022-05-27 10:28:07 +02:00
"src/**/*.mts",
"src/**/*.test.ts",
"src/**/*.test.tsx"
],
}