Configuration
The hop compiler is configured via a file called hop.toml.
The hop.toml file should be placed at the root of your hop project. All paths in the hop project will be relative to the folder containing this file.
toml
[compile]
# The language to compile to.
# type: "ts" | "js" | "go" | "python"
target = ""
# The path to the file generated by the hop compiler.
# type: String
output_path = ""
[dev]
# The shell commands that compiles and starts your web server
# when running the dev mode.
# type: Array[String]
server_commands = [""]