Hi! I have a yaml file that is used to describe a series of items. For example, it might look like this: ```yaml
-
name: apple
description: red and shiny
id: 1 -
name: grapes
description: comes in a bushel
id: 2
...
When I go to build my webapp, I'd like to compile everything into 1 javascript file. Is there a way to include the yaml file in the build?
In golang I'd be able to do something like this: ```go
//go:embed items.yml
var ITEMS string
items.yml would be loaded into the ITEMS variable at compile time, and I'd be able to use it accordingly. I know I can just do ```js
const ITEMS = `
yaml here
`
However, then I can't take full advantage of editor support for yaml.