Remove (possibly) unnecessary tsconfigRootDir

Let's see what breaks
This commit is contained in:
Manav Rathi 2024-04-03 13:11:17 +05:30
parent 764b6bf2f3
commit e2fd88bff0
No known key found for this signature in database
3 changed files with 0 additions and 9 deletions

View file

@ -1,8 +1,3 @@
module.exports = {
extends: ["@/build-config/eslintrc-next"],
parserOptions: {
tsconfigRootDir: __dirname,
},
// TODO (MR): Figure out a way to not have to ignored the next config .js
// ignorePatterns: [".eslintrc.js", "next.config.js"],
};

View file

@ -1,6 +1,5 @@
{
/* TSConfig for a TypeScript project that'll get transpiled by Next.js */
/* TSConfig docs: https://aka.ms/tsconfig.json */
"compilerOptions": {
/* We use TypeScript (tsc) as a type checker, not as a build tool */

View file

@ -1,6 +1,3 @@
module.exports = {
extends: ["@/build-config/eslintrc-base"],
parserOptions: {
tsconfigRootDir: __dirname,
},
};