Add a template for ts-jest

This commit is contained in:
Martijn Faassen
2022-05-11 12:14:55 +02:00
parent 332b634e76
commit 7bcb675dc2
11 changed files with 4787 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,
},
});