Files
hg-landing/tsconfig.json
iammm0 d721965e8d Add Heguang Tongkun landing page with light theme and refined UI.
Ship the full Vite/React marketing site with white-background styling, softer gradients, rounded typography, and section layout updates from the design pass.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-25 17:42:44 +08:00

24 lines
556 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"]
}