update directory structure

This commit is contained in:
Robert Soriano
2022-10-30 12:25:28 -07:00
parent 0c4a43ec19
commit 7a97127353
39 changed files with 112 additions and 127 deletions

10
tsup.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['src/index.ts', 'src/client/index.ts'],
format: ['cjs', 'esm'],
splitting: false,
clean: true,
external: ['#app'],
dts: true,
})