Initial commit: TODO Everywhere Logseq plugin

- Синхронизация задач из PPDB
- Синхронизация issues из Gitea
- Автоматическая настройка config.edn
- Slash-команды и кнопка в тулбаре
- Конвертация приоритетов и статусов
This commit is contained in:
2026-01-14 12:56:29 +03:00
commit 0352f53ed9
7 changed files with 824 additions and 0 deletions

10
vite.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import logseqPlugin from 'vite-plugin-logseq'
export default defineConfig({
plugins: [logseqPlugin()],
build: {
target: 'esnext',
minify: 'esbuild'
}
})