sitegen/tsconfig.json
chloe caruso 925366e79e add a file watcher, live rebuild.
this is only verified functional on windows 7
2025-06-10 20:06:32 -07:00

19 lines
453 B
JSON

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