From a0ca5bf7032e3cfe60bd5ed835db745161cdc07b Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Sun, 22 Jun 2025 10:05:01 +0200 Subject: [PATCH] format tsconfig --- apps/web/tsconfig.json | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index 2d17545..810fcfe 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -1,7 +1,11 @@ { "compilerOptions": { "target": "ES2017", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, "strict": true, @@ -19,14 +23,19 @@ } ], "paths": { - "@/*": ["./src/*"], + "@/*": [ + "./src/*" + ] } }, "include": [ - "next-env.d.ts", "**/*.ts", "**/*.tsx", "apps/web/.next/types/**/*.ts", + "next-env.d.ts", + ".next/types/**/*.ts" ], - "exclude": ["node_modules"] -} + "exclude": [ + "node_modules" + ] +}