In your elm-package.json file, using the "source-directories" key. I believe the default is [ "." ], so by default it will look in the same directory as the elm-package.json file.
{
"source-directories": [
"."
]
}
You can change it to [ "src" ] or even add multiple paths, since it's an array.
In your
elm-package.json
file, using the "source-directories" key. I believe the default is[ "." ]
, so by default it will look in the same directory as theelm-package.json
file.You can change it to
[ "src" ]
or even add multiple paths, since it's an array.