The way to opt packages into NNBD in a Bazel workspace will be to include this directive in a `BUILD` file: ``` dart_package( non_nullable = True, ) ``` The analysis server needs to recognize this pattern and use it to determine whether a package is opted in to NNBD. Note that `BUILD` files are auto-formatted so it's not necessary to parse the whole file to find this directive; a simple regexp should suffice.