Benjamin Smith
11/29/2021, 2:36 AMgenerator myThing {
provider = "node ./dist/index.js"
config = `
my config goes here
it is multiple lines
`
}
Or like this if necessary:
generator myThing {
/**
my config goes here
it is multiple lines
*/
provider = "node ./dist/index.js"
}
But I can't figure out a way to do it. Right now the best option seems to be to have a separate docstring comment for each line, but that gets annoying to type if there's a lot of lines:
generator myThing {
/// my config goes here
/// it is multiple lines
provider = "node ./dist/index.js"
}Ryan
11/29/2021, 5:13 AMBenjamin Smith
11/29/2021, 5:52 AM