sitegen/tsconfig.json

19 lines
418 B
JSON
Raw Normal View History

{
2025-06-07 02:25:06 -07:00
"compilerOptions": {
2025-06-07 16:45:45 -07:00
"allowImportingTsExtensions": true,
"baseUrl": ".",
2025-06-07 02:25:06 -07:00
"incremental": true,
2025-06-07 16:45:45 -07:00
"jsx": "react-jsx",
"jsxImportSource": "#ssr",
2025-06-07 02:25:06 -07:00
"lib": ["dom", "esnext", "esnext.iterator"],
"module": "nodenext",
2025-06-07 16:45:45 -07:00
"noEmit": true,
"outDir": ".clover/ts",
2025-06-07 02:25:06 -07:00
"paths": { "@/*": ["src/*"] },
2025-06-07 16:45:45 -07:00
"rootDir": ".",
"skipLibCheck": true,
2025-06-07 02:25:06 -07:00
"strict": true,
2025-06-07 16:45:45 -07:00
"target": "es2022"
2025-06-07 02:25:06 -07:00
}
}