sillyspace/tsconfig.json

19 lines
439 B
JSON
Raw Normal View History

2026-06-04 02:59:03 +00:00
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022", "DOM"],
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"outDir": "dist",
"rootDir": "src",
"types": ["node"]
},
"include": ["src/**/*.ts", "src/**/*.tsx"]
}