This commit is contained in:
2026-07-08 20:10:57 -04:00
commit a1cbd1657e
2 changed files with 25 additions and 0 deletions

9
.gitignore vendored Normal file
View File

@@ -0,0 +1,9 @@
*.pdf
.idea/
site/
main.html
main.pdf
bundle/
dist/
node_modules/

16
mise.toml Normal file
View File

@@ -0,0 +1,16 @@
[tools]
node = "latest"
tinymist = "0.15.0"
typst = "0.15.0"
watchexec = "latest"
[tasks.dev]
run = [
"typst watch main.typ bundle --format bundle --features bundle,html --no-serve & vite dev",
]
[tasks.build]
run = [
"typst compile main.typ node_modules/.typst-bundle --format bundle --features bundle,html",
"vite build",
]