Is there a flag to turn off the API @available checks?

Hi, we have a component under development that only supports macOS12 and above, but the app also needs to support macOS11, if deployed to macOS12, the app will crash on startup, due to missing symbol, so we need to target macOS12 for development but need to change the deployment target to macOS11. This leads to the need to add availability check to almost every struct/class in the code

My idea is to set it to macOS12 in Package.swift, use macOS12 for daily development and testing, but set -Xswiftc "-target" -Xswiftc "${ARCH}-apple-macos11" when swift build, and disable availability check