MorJS 未被使用的文件会被编译到产物里吗?
不会,但如果你想把某些未被使用的文件放到产物里,可以在 mor.config.ts 配置中,通过 MorJS 基础 - 配置 配置项 copy,设置要复制到输出目录的文件或文件夹;
// mor.config.ts
export default defineConfig([
...
{
name: 'wechat',
...,
copy: [
{ from: 'anotherFile.json', to: './' }
]
}
]