Build EnvHelper desktop app
Some checks failed
Build Windows App / build-windows (push) Has been cancelled

This commit is contained in:
MrSphay
2026-05-01 12:54:29 +02:00
commit 0d4c6e9c82
15 changed files with 978 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
name: Build Windows App
on:
push:
branches:
- main
- master
workflow_dispatch:
jobs:
build-windows:
runs-on: windows-latest
env:
GH_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
GITHUB_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: npm install
- name: Build Windows installer
run: npm run dist:win
- name: Upload Windows artifacts
uses: actions/upload-artifact@v4
with:
name: envhelper-windows
path: release/*
- name: Publish to Gitea package registry
shell: pwsh
run: |
$package = Get-Content package.json | ConvertFrom-Json
$shortSha = $env:GITHUB_SHA.Substring(0, 7)
$packageVersion = "$($package.version)-$shortSha"
$headers = @{ Authorization = "token $env:REGISTRY_TOKEN" }
Get-ChildItem release -File | ForEach-Object {
$fileName = [System.Uri]::EscapeDataString($_.Name)
$uri = "https://git.wilkensxl.de/api/packages/MrSphay/generic/envhelper/$packageVersion/$fileName"
Invoke-RestMethod -Method Put -Uri $uri -Headers $headers -InFile $_.FullName -ContentType "application/octet-stream"
}

8
.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
node_modules
dist
dist-electron
release
*.log
.env
.env.*
!.env.example

34
README.md Normal file
View File

@@ -0,0 +1,34 @@
# EnvHelper
EnvHelper ist eine Windows-Desktop-App zum Ersetzen von `CHANGE_ME` Platzhaltern in `.env` Dateien.
## Funktionen
- `.env` Datei laden oder reinen Text einfügen
- `CHANGE_ME...` Platzhalter erkennen
- passende Werte anhand von Variablenname und Platzhalter ableiten
- gleiche Platzhalter konsistent mit demselben Wert ersetzen
- neue `.env` als Text kopieren oder speichern
## Entwicklung
```bash
npm install
npm run dev
```
In einem zweiten Terminal:
```bash
npm run build
```
## Windows Build
Der Windows-Build läuft über Gitea Actions:
```bash
npm run dist:win
```
Die erzeugten Dateien liegen im Runner unter `release/` und werden als Workflow-Artefakt hochgeladen.

74
electron/main.ts Normal file
View File

@@ -0,0 +1,74 @@
import { app, BrowserWindow, dialog, ipcMain } from "electron";
import isDev from "electron-is-dev";
import { readFile, writeFile } from "node:fs/promises";
import path from "node:path";
import { fileURLToPath } from "node:url";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
async function createWindow() {
const win = new BrowserWindow({
width: 1220,
height: 820,
minWidth: 980,
minHeight: 680,
title: "EnvHelper",
backgroundColor: "#f6f7f4",
webPreferences: {
preload: path.join(__dirname, "preload.js"),
contextIsolation: true,
nodeIntegration: false
}
});
if (isDev) {
await win.loadURL("http://127.0.0.1:5173");
} else {
await win.loadFile(path.join(__dirname, "../dist/index.html"));
}
}
ipcMain.handle("envhelper:open-file", async () => {
const result = await dialog.showOpenDialog({
properties: ["openFile"],
filters: [{ name: "Environment files", extensions: ["env", "txt", "*"] }]
});
if (result.canceled || result.filePaths.length === 0) {
return null;
}
const filePath = result.filePaths[0];
return {
path: filePath,
content: await readFile(filePath, "utf8")
};
});
ipcMain.handle("envhelper:save-file", async (_event, content: string) => {
const result = await dialog.showSaveDialog({
defaultPath: ".env",
filters: [{ name: "Environment file", extensions: ["env"] }]
});
if (result.canceled || !result.filePath) {
return null;
}
await writeFile(result.filePath, content, "utf8");
return result.filePath;
});
app.whenReady().then(createWindow);
app.on("window-all-closed", () => {
if (process.platform !== "darwin") {
app.quit();
}
});
app.on("activate", () => {
if (BrowserWindow.getAllWindows().length === 0) {
void createWindow();
}
});

6
electron/preload.ts Normal file
View File

@@ -0,0 +1,6 @@
import { contextBridge, ipcRenderer } from "electron";
contextBridge.exposeInMainWorld("envHelper", {
openFile: () => ipcRenderer.invoke("envhelper:open-file"),
saveFile: (content: string) => ipcRenderer.invoke("envhelper:save-file", content)
});

12
index.html Normal file
View File

@@ -0,0 +1,12 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EnvHelper</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

55
package.json Normal file
View File

@@ -0,0 +1,55 @@
{
"name": "envhelper",
"version": "0.1.0",
"description": "Desktop helper for replacing CHANGE_ME placeholders in .env files.",
"author": "MrSphay",
"private": true,
"main": "dist-electron/main.js",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc --noEmit && vite build && tsc -p tsconfig.electron.json",
"dist:win": "npm run build && electron-builder --win nsis portable --x64",
"lint": "tsc --noEmit"
},
"dependencies": {
"electron-is-dev": "^3.0.1",
"lucide-react": "^0.468.0",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"electron": "^38.1.2",
"electron-builder": "^26.0.12",
"typescript": "^5.9.2",
"vite": "^7.1.7"
},
"build": {
"appId": "de.wilkensxl.envhelper",
"productName": "EnvHelper",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
],
"win": {
"target": [
"nsis",
"portable"
],
"artifactName": "EnvHelper-${version}-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
}
}
}

150
src/App.tsx Normal file
View File

@@ -0,0 +1,150 @@
import { Check, Clipboard, FileDown, FileInput, RefreshCcw, ShieldCheck, Sparkles } from "lucide-react";
import { useMemo, useState } from "react";
import { transformEnv } from "./env";
const sampleEnv = `APP_IMAGE=git.wilkensxl.de/mrsphay/hilden-directory-gateway:latest
APP_PORT=3000
NODE_ENV=production
PUBLIC_BASE_URL=https://gateway.example.local
TRUSTED_IFRAME_ANCESTORS=https://www.hilden.de
DATABASE_URL=postgresql://hilden_app:CHANGE_ME_POSTGRES_PASSWORD@postgres:5432/hilden_directory
POSTGRES_PASSWORD=CHANGE_ME_POSTGRES_PASSWORD
SESSION_SECRET=CHANGE_ME_AT_LEAST_32_RANDOM_CHARACTERS
ENCRYPTION_KEY_BASE64=CHANGE_ME_32_RANDOM_BYTES_AS_BASE64
BOOTSTRAP_ADMIN_EMAIL=admin@example.local
BOOTSTRAP_ADMIN_PASSWORD=CHANGE_ME_LONG_INITIAL_ADMIN_PASSWORD`;
export default function App() {
const [input, setInput] = useState(sampleEnv);
const [loadedPath, setLoadedPath] = useState<string | null>(null);
const [copyLabel, setCopyLabel] = useState("Kopieren");
const [generation, setGeneration] = useState(0);
const result = useMemo(() => transformEnv(input), [input, generation]);
async function openFile() {
const file = await window.envHelper?.openFile();
if (file) {
setInput(file.content);
setLoadedPath(file.path);
}
}
async function saveFile() {
await window.envHelper?.saveFile(result.output);
}
async function copyOutput() {
await navigator.clipboard.writeText(result.output);
setCopyLabel("Kopiert");
window.setTimeout(() => setCopyLabel("Kopieren"), 1400);
}
function regenerate() {
setGeneration((current) => current + 1);
}
return (
<main className="shell">
<section className="hero">
<div>
<p className="eyebrow"><Sparkles size={16} /> EnvHelper</p>
<h1>.env Platzhalter sauber ersetzen</h1>
<p className="subline">
Erkennt CHANGE_ME Werte, erzeugt passende Secrets im richtigen Format und hält gleiche Platzhalter synchron.
</p>
</div>
<div className="heroActions">
<button className="secondary" onClick={openFile} type="button">
<FileInput size={18} /> Datei laden
</button>
<button className="secondary" onClick={saveFile} type="button" disabled={!result.output}>
<FileDown size={18} /> .env speichern
</button>
</div>
</section>
<section className="stats">
<div>
<span>{result.changedCount}</span>
<p>Fundstellen</p>
</div>
<div>
<span>{result.replacements.length}</span>
<p>eindeutige Werte</p>
</div>
<div>
<span>{loadedPath ? "Datei" : "Text"}</span>
<p>Quelle</p>
</div>
</section>
<section className="workspace">
<div className="panel">
<div className="panelHeader">
<div>
<h2>Input</h2>
<p>{loadedPath ?? "Direkt einfügen oder Beispieldaten ersetzen"}</p>
</div>
<button className="iconButton" onClick={() => setInput(sampleEnv)} title="Beispiel laden" type="button">
<RefreshCcw size={18} />
</button>
</div>
<textarea
spellCheck={false}
value={input}
onChange={(event) => setInput(event.target.value)}
aria-label="Env input"
/>
</div>
<div className="panel">
<div className="panelHeader">
<div>
<h2>Output</h2>
<p>Bereit für Deployment oder Secret Store</p>
</div>
<div className="buttonRow">
<button className="iconButton" onClick={regenerate} title="Neu erzeugen" type="button">
<RefreshCcw size={18} />
</button>
<button className="primary" onClick={copyOutput} type="button">
{copyLabel === "Kopiert" ? <Check size={18} /> : <Clipboard size={18} />} {copyLabel}
</button>
</div>
</div>
<textarea spellCheck={false} value={result.output} readOnly aria-label="Env output" />
</div>
</section>
<section className="replacementPanel">
<div className="panelHeader compact">
<div>
<h2>Erkannte Anforderungen</h2>
<p>Formate werden aus Variablennamen und Platzhaltertext abgeleitet.</p>
</div>
<ShieldCheck size={22} />
</div>
{result.replacements.length === 0 ? (
<div className="empty">Keine CHANGE_ME Platzhalter gefunden.</div>
) : (
<div className="replacementGrid">
{result.replacements.map((replacement) => (
<article className="replacement" key={replacement.placeholder}>
<div>
<strong>{replacement.placeholder}</strong>
<p>{replacement.keys.join(", ")}</p>
</div>
<span>{replacement.format}</span>
</article>
))}
</div>
)}
</section>
</main>
);
}

220
src/env.ts Normal file
View File

@@ -0,0 +1,220 @@
export interface Replacement {
placeholder: string;
value: string;
format: string;
keys: string[];
}
export interface TransformResult {
output: string;
replacements: Replacement[];
changedCount: number;
}
interface PlaceholderHit {
key: string;
placeholder: string;
}
const changeMePattern = /CHANGE_ME[A-Z0-9_]*/g;
export function transformEnv(input: string): TransformResult {
const hits = collectHits(input);
const generated = new Map<string, Replacement>();
for (const hit of hits) {
if (!generated.has(hit.placeholder)) {
const requirement = inferRequirement(hit.key, hit.placeholder);
generated.set(hit.placeholder, {
placeholder: hit.placeholder,
value: generateValue(requirement),
format: requirement.label,
keys: []
});
}
const replacement = generated.get(hit.placeholder);
if (replacement && !replacement.keys.includes(hit.key)) {
replacement.keys.push(hit.key);
}
}
let output = input;
const orderedReplacements = [...generated.values()].sort((a, b) => b.placeholder.length - a.placeholder.length);
for (const replacement of orderedReplacements) {
output = output.replaceAll(replacement.placeholder, replacement.value);
}
return {
output,
replacements: [...generated.values()].sort((a, b) => a.placeholder.localeCompare(b.placeholder)),
changedCount: hits.length
};
}
function collectHits(input: string): PlaceholderHit[] {
const hits: PlaceholderHit[] = [];
for (const line of input.split(/\r?\n/)) {
const parsed = parseAssignment(line);
if (!parsed) {
continue;
}
const matches = parsed.value.matchAll(changeMePattern);
for (const match of matches) {
hits.push({
key: parsed.key,
placeholder: match[0]
});
}
}
return hits;
}
function parseAssignment(line: string): { key: string; value: string } | null {
const trimmed = line.trim();
if (!trimmed || trimmed.startsWith("#")) {
return null;
}
const normalized = trimmed.startsWith("export ") ? trimmed.slice(7).trimStart() : trimmed;
const equalsIndex = normalized.indexOf("=");
if (equalsIndex <= 0) {
return null;
}
return {
key: normalized.slice(0, equalsIndex).trim(),
value: normalized.slice(equalsIndex + 1).trim()
};
}
type Requirement =
| { type: "base64"; bytes: number; label: string }
| { type: "hex"; bytes: number; label: string }
| { type: "uuid"; label: string }
| { type: "integer"; min: number; max: number; label: string }
| { type: "url"; label: string }
| { type: "email"; label: string }
| { type: "secret"; length: number; label: string }
| { type: "password"; length: number; urlSafe: boolean; label: string };
function inferRequirement(key: string, placeholder: string): Requirement {
const signal = `${key}_${placeholder}`.toUpperCase();
const byteCount = extractNumberBefore(signal, "RANDOM_BYTES") ?? extractNumberBefore(signal, "BYTES");
if (signal.includes("BASE64")) {
return {
type: "base64",
bytes: byteCount ?? 32,
label: `${byteCount ?? 32} random bytes as Base64`
};
}
if (signal.includes("UUID")) {
return { type: "uuid", label: "UUID v4" };
}
if (signal.includes("HEX")) {
return { type: "hex", bytes: byteCount ?? 32, label: `${byteCount ?? 32} random bytes as hex` };
}
if (signal.includes("PORT")) {
return { type: "integer", min: 1024, max: 49151, label: "TCP port number" };
}
if (signal.includes("EMAIL")) {
return { type: "email", label: "email address" };
}
if (signal.includes("URL") || signal.includes("URI") || signal.includes("ORIGIN")) {
return { type: "url", label: "HTTPS URL" };
}
if (signal.includes("PASSWORD")) {
const length = signal.includes("LONG") || signal.includes("ADMIN") ? 28 : 24;
return {
type: "password",
length,
urlSafe: signal.includes("DATABASE") || signal.includes("POSTGRES") || signal.includes("MYSQL"),
label: `${length} character strong password`
};
}
const minimumLength = extractNumberAfter(signal, "AT_LEAST") ?? 48;
if (signal.includes("SECRET") || signal.includes("TOKEN") || signal.includes("KEY")) {
return {
type: "secret",
length: Math.max(minimumLength, 32),
label: `${Math.max(minimumLength, 32)} character URL-safe secret`
};
}
return { type: "secret", length: 32, label: "32 character URL-safe secret" };
}
function generateValue(requirement: Requirement): string {
switch (requirement.type) {
case "base64":
return bytesToBase64(randomBytes(requirement.bytes));
case "hex":
return [...randomBytes(requirement.bytes)].map((byte) => byte.toString(16).padStart(2, "0")).join("");
case "uuid":
return crypto.randomUUID();
case "integer":
return String(randomInteger(requirement.min, requirement.max));
case "url":
return "https://example.local";
case "email":
return "admin@example.local";
case "password":
return randomString(
requirement.length,
requirement.urlSafe
? "ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz23456789_-"
: "ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz23456789!#$%&*+-=?@_"
);
case "secret":
return randomString(requirement.length, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_-");
}
}
function randomBytes(length: number): Uint8Array {
const bytes = new Uint8Array(length);
crypto.getRandomValues(bytes);
return bytes;
}
function randomInteger(min: number, max: number): number {
const range = max - min + 1;
const array = new Uint32Array(1);
crypto.getRandomValues(array);
return min + (array[0] % range);
}
function randomString(length: number, alphabet: string): string {
const bytes = randomBytes(length);
return [...bytes].map((byte) => alphabet[byte % alphabet.length]).join("");
}
function bytesToBase64(bytes: Uint8Array): string {
let binary = "";
for (const byte of bytes) {
binary += String.fromCharCode(byte);
}
return btoa(binary);
}
function extractNumberBefore(signal: string, marker: string): number | null {
const match = signal.match(new RegExp(`(\\d+)_${marker}`));
return match ? Number(match[1]) : null;
}
function extractNumberAfter(signal: string, marker: string): number | null {
const match = signal.match(new RegExp(`${marker}_(\\d+)`));
return match ? Number(match[1]) : null;
}

10
src/main.tsx Normal file
View File

@@ -0,0 +1,10 @@
import React from "react";
import { createRoot } from "react-dom/client";
import App from "./App";
import "./styles.css";
createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>
);

300
src/styles.css Normal file
View File

@@ -0,0 +1,300 @@
:root {
color: #17211c;
background: #f5f5ef;
font-family:
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-synthesis: none;
text-rendering: optimizeLegibility;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-width: 940px;
min-height: 100vh;
background:
linear-gradient(135deg, rgba(41, 94, 82, 0.12), transparent 36%),
linear-gradient(315deg, rgba(190, 78, 61, 0.1), transparent 34%),
#f5f5ef;
}
button,
textarea {
font: inherit;
}
button {
align-items: center;
border: 0;
border-radius: 8px;
cursor: pointer;
display: inline-flex;
font-weight: 700;
gap: 8px;
justify-content: center;
min-height: 42px;
padding: 0 16px;
transition:
transform 140ms ease,
box-shadow 140ms ease,
background 140ms ease;
}
button:hover:not(:disabled) {
transform: translateY(-1px);
}
button:disabled {
cursor: not-allowed;
opacity: 0.5;
}
.shell {
display: flex;
flex-direction: column;
gap: 18px;
margin: 0 auto;
max-width: 1420px;
min-height: 100vh;
padding: 28px;
}
.hero {
align-items: flex-end;
display: flex;
gap: 24px;
justify-content: space-between;
padding: 10px 2px 4px;
}
.eyebrow {
align-items: center;
color: #2d6f62;
display: flex;
font-size: 0.85rem;
font-weight: 800;
gap: 7px;
letter-spacing: 0;
margin: 0 0 10px;
text-transform: uppercase;
}
h1,
h2,
p {
margin: 0;
}
h1 {
color: #13201b;
font-size: 2.8rem;
letter-spacing: 0;
line-height: 1.02;
}
h2 {
font-size: 1rem;
letter-spacing: 0;
}
.subline {
color: #53635d;
font-size: 1.04rem;
line-height: 1.5;
margin-top: 12px;
max-width: 720px;
}
.heroActions,
.buttonRow {
display: flex;
gap: 10px;
}
.primary {
background: #1f5d53;
color: #ffffff;
box-shadow: 0 10px 24px rgba(31, 93, 83, 0.18);
}
.secondary {
background: #ffffff;
color: #1f332d;
box-shadow: inset 0 0 0 1px #d9ded5;
}
.iconButton {
background: #eef2ec;
color: #26372f;
min-width: 42px;
padding: 0;
}
.stats {
display: grid;
gap: 12px;
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stats div {
background: rgba(255, 255, 255, 0.78);
border: 1px solid #dde3da;
border-radius: 8px;
padding: 14px 16px;
}
.stats span {
color: #9b3f31;
display: block;
font-size: 1.35rem;
font-weight: 850;
line-height: 1;
}
.stats p,
.panelHeader p,
.replacement p {
color: #64726d;
font-size: 0.86rem;
line-height: 1.4;
margin-top: 5px;
}
.workspace {
display: grid;
flex: 1;
gap: 18px;
grid-template-columns: repeat(2, minmax(0, 1fr));
min-height: 430px;
}
.panel,
.replacementPanel {
background: rgba(255, 255, 255, 0.86);
border: 1px solid #dbe2d8;
border-radius: 8px;
box-shadow: 0 20px 54px rgba(54, 67, 61, 0.1);
}
.panel {
display: flex;
flex-direction: column;
min-height: 0;
overflow: hidden;
}
.panelHeader {
align-items: center;
border-bottom: 1px solid #e2e6de;
display: flex;
gap: 16px;
justify-content: space-between;
padding: 16px;
}
.panelHeader.compact {
border-bottom: 0;
padding-bottom: 10px;
}
textarea {
background: #101815;
border: 0;
color: #e7eee8;
flex: 1;
line-height: 1.55;
min-height: 360px;
outline: none;
padding: 18px;
resize: none;
white-space: pre;
}
textarea::selection {
background: #be4e3d;
color: #ffffff;
}
.replacementPanel {
padding-bottom: 16px;
}
.replacementGrid {
display: grid;
gap: 10px;
grid-template-columns: repeat(3, minmax(0, 1fr));
padding: 0 16px;
}
.replacement {
align-items: flex-start;
background: #f7f8f4;
border: 1px solid #e1e6dd;
border-radius: 8px;
display: flex;
gap: 12px;
justify-content: space-between;
min-height: 88px;
padding: 13px;
}
.replacement strong {
color: #26372f;
display: block;
font-size: 0.86rem;
line-height: 1.35;
overflow-wrap: anywhere;
}
.replacement span {
background: #e6efe8;
border-radius: 999px;
color: #23594f;
flex: 0 0 auto;
font-size: 0.75rem;
font-weight: 800;
max-width: 42%;
padding: 6px 9px;
text-align: right;
}
.empty {
color: #66736d;
padding: 0 16px 4px;
}
@media (max-width: 1050px) {
body {
min-width: 0;
}
.shell {
padding: 18px;
}
.hero,
.workspace {
grid-template-columns: 1fr;
}
.hero {
align-items: stretch;
flex-direction: column;
}
.heroActions {
flex-wrap: wrap;
}
h1 {
font-size: 2.25rem;
}
.replacementGrid,
.stats {
grid-template-columns: 1fr;
}
}

13
src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
/// <reference types="vite/client" />
interface EnvHelperFileResult {
path: string;
content: string;
}
interface Window {
envHelper?: {
openFile: () => Promise<EnvHelperFileResult | null>;
saveFile: (content: string) => Promise<string | null>;
};
}

15
tsconfig.electron.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist-electron",
"rootDir": "electron",
"strict": true,
"skipLibCheck": true,
"types": ["node"],
"noEmit": false
},
"include": ["electron/**/*.ts"]
}

20
tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": ["src"]
}

10
vite.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
build: {
outDir: "dist",
emptyOutDir: true
}
});