ts-uvu starter template

This commit is contained in:
Alex Lohr
2022-03-07 10:11:30 +01:00
parent bec3c487cc
commit 254d459f16
9 changed files with 1691 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vite';
import solidPlugin from 'vite-plugin-solid';
export default defineConfig({
plugins: [solidPlugin()],
build: {
target: 'esnext',
polyfillDynamicImport: false,
},
});