This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
esp-projekt/src/vite-env.d.ts
2024-10-31 21:43:48 +01:00

14 lines
326 B
TypeScript

/// <reference types="vite/client" />
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
declare module '*.vue' {
//@ts-ignore
import type { DefineComponent } from 'npm:vue'
const component: DefineComponent<{}, {}, any>
export default component
}