thepaperpilot
7fe57798bb
Should be thoroughly tested still Also involved removing operator overloads, which weren't good anyways
15 lines
385 B
TypeScript
15 lines
385 B
TypeScript
import vue from "@vitejs/plugin-vue";
|
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
|
import { defineConfig } from "vite";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
vueJsx({
|
|
// options are passed on to @vue/babel-plugin-jsx
|
|
}),
|
|
tsconfigPaths()
|
|
]
|
|
});
|