17 lines
401 B
JSON
17 lines
401 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["esnext"],
|
|
"types": ["@cloudflare/workers-types", "node", "jest"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "hono/jsx",
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": ["**/*.test.ts", "cookbook"]
|
|
}
|