mirror of
https://github.com/honojs/hono.git
synced 2024-11-21 10:08:58 +01:00
29 lines
594 B
JSON
29 lines
594 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"declaration": true,
|
|
"moduleResolution": "Bundler",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"types": [
|
|
"node",
|
|
"vitest/globals"
|
|
],
|
|
"jsx": "react",
|
|
"jsxFactory": "jsx",
|
|
"jsxFragmentFactory": "Fragment",
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.mts",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.test.tsx"
|
|
],
|
|
}
|