In a monorepo, you typically use the "paths" option inside of the "tsconfig.json" file to make your individual packages aware of each other like this: #### `tsconfig.json` ```json { "paths": { "foo": ["packages/foo/src/index.ts"], "bar": ["packages/bar/src/index.ts"], }, } ``` However, this triggers false positives for `no-missing-import`.