Commit b05c57aa authored by Michael Underwood's avatar Michael Underwood
Browse files

Add Vue module to allow tsc to compile from cli

parent f00d7ce9
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
/// <reference types="vite/client" />
declare module "*.vue" {
  import Vue from "vue";
  export default Vue;
}
+2 −2
Original line number Diff line number Diff line
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { URL, fileURLToPath } from "node:url";
import { defineConfig } from "vite";

// https://vitejs.dev/config/
export default defineConfig({