Having a schema for tauri.conf.json would be very helpful.
I made my own schema file based on your documentation and I reference that schema using the $schema field. But your parser doesn't accept the field. As a workaround, I customized the CLI in config.rs and removed deny_unknown_fields to make it work.
I later found out that you do generate a schema.json file from config.rs code automatically. It doesn't have very good enum support right now IMO, but I recommend you make that schema file available and use it in the code examples.
Having a schema for
tauri.conf.jsonwould be very helpful.I made my own schema file based on your documentation and I reference that schema using the $schema field. But your parser doesn't accept the field. As a workaround, I customized the CLI in
config.rsand removeddeny_unknown_fieldsto make it work.I later found out that you do generate a
schema.jsonfile fromconfig.rscode automatically. It doesn't have very good enum support right now IMO, but I recommend you make that schema file available and use it in the code examples.