- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
25 lines
848 B
TypeScript
25 lines
848 B
TypeScript
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
import type { NativeElements, ReservedProps, VNode } from '@vue/runtime-dom'
|
|
|
|
/**
|
|
* JSX namespace for usage with @jsxImportsSource directive
|
|
* when ts compilerOptions.jsx is 'react-jsx' or 'react-jsxdev'
|
|
* https://www.typescriptlang.org/tsconfig#jsxImportSource
|
|
*/
|
|
export { h as jsx, h as jsxDEV, Fragment, h as jsxs } from '@vue/runtime-dom'
|
|
|
|
export namespace JSX {
|
|
export interface Element extends VNode {}
|
|
export interface ElementClass {
|
|
$props: {}
|
|
}
|
|
export interface ElementAttributesProperty {
|
|
$props: {}
|
|
}
|
|
export interface IntrinsicElements extends NativeElements {
|
|
// allow arbitrary elements
|
|
// @ts-ignore suppress ts:2374 = Duplicate string index signature.
|
|
[name: string]: any
|
|
}
|
|
export interface IntrinsicAttributes extends ReservedProps {}
|
|
}
|