diff --git a/lib/shared.js b/lib/shared.js index bff7c5d..f0a00d6 100644 --- a/lib/shared.js +++ b/lib/shared.js @@ -155,6 +155,12 @@ module.exports = { // https://github.com/iamturns/eslint-config-airbnb-typescript/issues/50 // This will be caught by TypeScript compiler if `strictNullChecks` (or `strict`) is enabled 'no-undef': 'off', + + /* Using TypeScript makes it safe enough to disable the checks below */ + + // Disable ESLint-based module resolution check for improved monorepo support + // https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-unresolved.md + 'import/no-unresolved': 'off', }, }, ],