mirror of
https://github.com/honojs/hono.git
synced 2024-11-21 18:18:57 +01:00
29 lines
571 B
JSON
29 lines
571 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"declaration": true,
|
|
"moduleResolution": "Node",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"lib": [
|
|
"WebWorker"
|
|
],
|
|
"types": [
|
|
"jest",
|
|
"node"
|
|
],
|
|
"jsx": "react",
|
|
"jsxFactory": "jsx",
|
|
"jsxFragmentFactory": "Fragment",
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.mts",
|
|
"src/**/*.test.ts"
|
|
],
|
|
} |