sitegen/tsconfig.json
2025-06-22 14:38:36 -07:00

20 lines
500 B
JSON

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