Files
hapi/web/tsconfig.json
T
weishu 9be0a96af4 feat: add web vibration api fallback for haptic feedback
Replace no-op browser haptic feedback with Web Vibration API support,
allowing haptic feedback when running outside Telegram Mini App. Also
remove stale react-syntax-highlighter type reference from tsconfig.
2025-12-18 12:53:11 +08:00

16 lines
378 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020", "ESNext", "ESNext.Disposable", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"noEmit": true,
"types": ["vite/client"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"]
}