Initial scaffold: Marti poetry workbench

Static-analysis-first poetry editor based on Borges architecture.
Three-column layout (sidebar | editor | analysis), AI opt-in and off by default.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
TC
2026-06-14 21:38:55 +10:00
commit dd5fdc1223
28 changed files with 8518 additions and 0 deletions

12
electron.vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { resolve } from 'path'
import { defineConfig, externalizeDepsPlugin } from 'electron-vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
main: { plugins: [externalizeDepsPlugin()] },
preload: { plugins: [externalizeDepsPlugin()] },
renderer: {
resolve: { alias: { '@renderer': resolve('src/renderer') } },
plugins: [react()]
}
})