diff --git a/e2e/tsconfig.json b/e2e/tsconfig.json
index e45598cbae2c75c1440d718e6638bd5f0393e618..ce21a4de0facfdb495d5c456daac76feeb070554 100644
--- a/e2e/tsconfig.json
+++ b/e2e/tsconfig.json
@@ -1,12 +1,12 @@
 {
   "extends": "../../../tsconfig.json",
   "compilerOptions": {
-    "tsBuildInfoFile": "./lib/.e2e.tsbuildinfo"
+    "tsBuildInfoFile": "./lib/.e2e.tsbuildinfo",
   },
   "include": ["./**/*.ts"],
   "references": [
     {
-      "path": ".."
-    }
-  ]
+      "path": "..",
+    },
+  ],
 }
diff --git a/templates/types/simple/express/tsconfig.json b/templates/types/simple/express/tsconfig.json
index bc819cab43220b31fac6abb1d4a36ac5880ef011..b7687912a99030f8e8764333e95805f6751b3994 100644
--- a/templates/types/simple/express/tsconfig.json
+++ b/templates/types/simple/express/tsconfig.json
@@ -5,6 +5,6 @@
     "forceConsistentCasingInFileNames": true,
     "strict": true,
     "skipLibCheck": true,
-    "moduleResolution": "node"
-  }
+    "moduleResolution": "node",
+  },
 }
diff --git a/templates/types/streaming/express/tsconfig.json b/templates/types/streaming/express/tsconfig.json
index bc819cab43220b31fac6abb1d4a36ac5880ef011..b7687912a99030f8e8764333e95805f6751b3994 100644
--- a/templates/types/streaming/express/tsconfig.json
+++ b/templates/types/streaming/express/tsconfig.json
@@ -5,6 +5,6 @@
     "forceConsistentCasingInFileNames": true,
     "strict": true,
     "skipLibCheck": true,
-    "moduleResolution": "node"
-  }
+    "moduleResolution": "node",
+  },
 }
diff --git a/templates/types/streaming/nextjs/tsconfig.json b/templates/types/streaming/nextjs/tsconfig.json
index 40c136b8255d33d2f7335e82f141d9d16005d878..b3f86129768207c1887b953aa660310853c16cba 100644
--- a/templates/types/streaming/nextjs/tsconfig.json
+++ b/templates/types/streaming/nextjs/tsconfig.json
@@ -15,14 +15,14 @@
     "incremental": true,
     "plugins": [
       {
-        "name": "next"
-      }
+        "name": "next",
+      },
     ],
     "paths": {
-      "@/*": ["./*"]
+      "@/*": ["./*"],
     },
-    "forceConsistentCasingInFileNames": true
+    "forceConsistentCasingInFileNames": true,
   },
   "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
-  "exclude": ["node_modules"]
+  "exclude": ["node_modules"],
 }
diff --git a/tsconfig.json b/tsconfig.json
index 8c2c4944ee39a6253675fd140f35579aab468359..ecd08fe57ba13946774f26dd8523134e400b48ae 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -6,14 +6,14 @@
     "strict": true,
     "resolveJsonModule": true,
     "esModuleInterop": true,
-    "skipLibCheck": true
+    "skipLibCheck": true,
   },
   "include": [
     "create-app.ts",
     "index.ts",
     "./helpers",
     "questions.ts",
-    "package.json"
+    "package.json",
   ],
-  "exclude": ["dist"]
+  "exclude": ["dist"],
 }