Parcourir la source

Create a next specific base

The include still needs to be specified in the importing tsconfig otherwise the
"." is resolved relative to the @/build-config.
Manav Rathi il y a 1 an
Parent
commit
3b8c48e92d

+ 2 - 10
web/apps/auth/tsconfig.json

@@ -1,11 +1,6 @@
 {
-    "extends": "@/build-config/tsconfig-typecheck.json",
-    "include": [
-        "src/**/*.ts",
-        "src/**/*.tsx",
-        "src/**/*.d.ts",
-        "../../packages/shared/themes/mui-theme.d.ts"
-    ],
+    "extends": "@/build-config/tsconfig-next.json",
+    "include": ["src", "../../packages/shared/themes/mui-theme.d.ts"],
     // Temporarily disable some things to get the existing code to compile
     // without warnings.
     "compilerOptions": {
@@ -13,9 +8,6 @@
 
         "jsxImportSource": "@emotion/react",
 
-        /* Also indicate expectation of a WebWorker runtime */
-        "lib": ["ESnext", "DOM", "DOM.Iterable", "WebWorker"],
-
         "verbatimModuleSyntax": false,
         "resolveJsonModule": false,
 

+ 8 - 0
web/packages/build-config/tsconfig-next.json

@@ -0,0 +1,8 @@
+{
+    /* A base TSConfig for typechecking our Next.js apps and packages. */
+    "extends": "@/build-config/tsconfig-typecheck.json",
+    "compilerOptions": {
+        /* Also indicate expectation of a WebWorker runtime */
+        "lib": ["ESnext", "DOM", "DOM.Iterable", "WebWorker"]
+    }
+}

+ 1 - 6
web/packages/media/tsconfig.json

@@ -1,9 +1,4 @@
 {
-    "extends": "@/build-config/tsconfig-typecheck.json",
-    "compilerOptions": {
-        /* Also indicate expectation of a WebWorker runtime */
-        "lib": ["ESnext", "DOM", "DOM.Iterable", "WebWorker"]
-    },
-    /* Typecheck all files with the given extensions (here or in subfolders) */
+    "extends": "@/build-config/tsconfig-next.json",
     "include": [".", "../../packages/next/global-electron.d.ts"]
 }

+ 1 - 5
web/packages/next/tsconfig.json

@@ -1,8 +1,4 @@
 {
-    "extends": "@/build-config/tsconfig-typecheck.json",
-    "compilerOptions": {
-        /* Also indicate expectation of a WebWorker runtime */
-        "lib": ["ESnext", "DOM", "DOM.Iterable", "WebWorker"]
-    },
+    "extends": "@/build-config/tsconfig-next.json",
     "include": ["."]
 }