- Added Typst templates for receipts and announcements. - Implemented TypstRunner and TypstRunner2 services for PDF generation. - Included necessary fonts for Typst rendering. - Updated Dockerfile to install Typst and Pandoc. - Enhanced API with new endpoints for Typst functionality. - Added temporary directory handling for generated files. - Updated .gitignore and .dockerignore to exclude temporary files.
25 lines
No EOL
622 B
JSON
25 lines
No EOL
622 B
JSON
{
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports.biome": "explicit",
|
|
"source.fixAll.biome": "explicit"
|
|
},
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnType": false,
|
|
"editor.formatOnSave": true,
|
|
"npm.exclude": "**/.next/**",
|
|
"sqltools.connections": [
|
|
{
|
|
"database": "postgres",
|
|
"driver": "PostgreSQL",
|
|
"name": "DB",
|
|
"password": "rootpost",
|
|
"port": 5432,
|
|
"previewLimit": 50,
|
|
"server": "localhost",
|
|
"username": "postgres"
|
|
}
|
|
],
|
|
"js/ts.tsdk.path": "node_modules\\typescript\\lib",
|
|
"biome.lsp.trace.server": "verbose",
|
|
"tinymist.fontPaths": ["${workspaceFolder}/typst/fonts"]
|
|
} |