sitegen/tsconfig.json
2025-06-07 02:25:06 -07:00

15 lines
352 B
JSON

{
"compilerOptions": {
"allowImportingTSExtensions": true,
"baseDir": ".",
"incremental": true,
"lib": ["dom", "esnext", "esnext.iterator"],
"module": "nodenext",
"outdir": ".clover/ts",
"paths": { "@/*": ["src/*"] },
"strict": true,
"target": "es2022",
"jsxImportSource": "#ssr",
"jsx": "react-jsx"
}
}