befly 3.15.16 → 3.15.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -103,9 +103,5 @@ export async function loadBeflyConfig(nodeEnv) {
103
103
  if (strict !== undefined && typeof strict !== "boolean") {
104
104
  throw new Error(`配置错误:strict 必须为 boolean,当前值=${String(strict)}`);
105
105
  }
106
- const legacyCheckTable = config.checkTable;
107
- if (legacyCheckTable !== undefined) {
108
- throw new Error(`配置错误:checkTable 配置已废弃,请使用根属性 strict(例如 { "strict": false }),当前值=${String(legacyCheckTable)}`);
109
- }
110
106
  return config;
111
107
  }