## Info Tool should replace `__DEV__` flags in production mode to `false` ## Example **dev mode** ```ts if (__DEV__) { invariant(false, 'Some message') } otherLogic() ``` **prod mode** ```ts otherLogic() ```