diff --git a/packages/client/.eslintrc.js b/packages/client/.eslintrc.js index af5ae492..47ca0669 100644 --- a/packages/client/.eslintrc.js +++ b/packages/client/.eslintrc.js @@ -12,6 +12,7 @@ module.exports = { files: ['*.ts', '*.tsx', '.js', '.jsx'], parserOptions: { project: ['./tsconfig.json'], + tsconfigRootDir: __dirname, sourceType: 'module', }, }, diff --git a/packages/server/.eslintrc.js b/packages/server/.eslintrc.js index a25b3086..179df162 100644 --- a/packages/server/.eslintrc.js +++ b/packages/server/.eslintrc.js @@ -8,6 +8,7 @@ module.exports = { parserOptions: { project: ['./tsconfig.json'], sourceType: 'module', + tsconfigRootDir: __dirname, }, }, ],