"use strict";
const path_1 = require("path");
const fs_1 = require("fs");
module.exports = (bundler) => {
if (fs_1.existsSync(path_1.join(process.cwd(), "valory.json"))) {
bundler.addAssetType("ts", require.resolve("./valoryBundle"));
}
else {
return;
}
};