Browse Source

Remove (possibly) unnecessary tsconfigRootDir

Let's see what breaks
Manav Rathi 1 year ago
parent
commit
e2fd88bff0

+ 0 - 5
web/apps/payments/.eslintrc.js

@@ -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"],
 };

+ 0 - 1
web/packages/build-config/tsconfig.transpile.json

@@ -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 */

+ 0 - 3
web/packages/utils/.eslintrc.js

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