mirror of
https://github.com/honojs/hono.git
synced 2024-11-22 11:17:33 +01:00
1282473f85
* refactor: enable `strictPropertyInitialization` * checkout `0de127fd74879445b0910fd6505ca22a22a5d791`
30 lines
664 B
JSON
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"
|
|
],
|
|
} |