0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 11:17:33 +01:00
hono/tsconfig.json
Yusuke Wada 1282473f85
refactor: enable strictPropertyInitialization (#333)
* refactor: enable `strictPropertyInitialization`

* checkout `0de127fd74879445b0910fd6505ca22a22a5d791`
2022-07-01 10:30:43 +09:00

30 lines
664 B
JSON

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