0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-21 18:18:57 +01:00
hono/tsconfig.json
watany 8b4392fa36
feat(adaptor): Support AWS Function URL Streaming (#1625)
* 0.1

* lint

* stream

* type safe

* ignore

* lint

* test Node.writablestream

* 1.0

* fixed pipeline

* fixed
2023-11-07 07:05:23 +09:00

28 lines
580 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/**/*.d.ts",
"src/**/*.mts",
"src/**/*.test.ts",
"src/**/*.test.tsx"
],
}