sitegen/tsconfig.json
2025-08-11 22:38:02 -07:00

21 lines
538 B
JSON

{
"compilerOptions": {
"allowImportingTsExtensions": true,
"baseUrl": ".",
"incremental": true,
"jsx": "react-jsxdev",
"jsxImportSource": "#engine",
"lib": ["esnext", "dom", "dom.iterable"],
"module": "nodenext",
"noEmit": true,
"outDir": ".clover/ts",
"paths": { "@/*": ["src/*"] },
"rootDir": ".",
"skipLibCheck": true,
"strict": true,
"verbatimModuleSyntax": true,
"target": "es2022",
"noUncheckedIndexedAccess": true
},
"include": ["framework/**/*", "src/**/*"]
}