kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/typescript/testdata/import_missing.ts (about)

     1  // Perhaps surprisingly, TypeScript does not error on missing side-effect
     2  // imports like the below.  The rationale is something about how they
     3  // bring no symbols into the current module so there's nothing to check.
     4  // We include one of these in the test suite to ensure we don't fail on it.
     5  
     6  import 'nosuchmodule';