Fable F# > js compile multiple .fsx files
问题 How can I compile multiple .fsx files using Fable? I (naively) tried to just pass an array of them in the fable.config file like this: { "outDir": "app", "projFile":["app/index.fsx", "app/testmod.fsx"], "sourceMaps": true, "targets": { "production": { "sourceMaps": false } } } but get the warning: ARG ERROR: TypeError: Path must be a string. Received [ 'app/index.fsx', 'app/testmod.fsx' ] I know I could make a full-blown .fsproj file and point the fable compiler to that but it seems like