From 4a3a1c0e0a0e2a8abbb967c9b6d85c82bf5d3beb Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Thu, 5 Oct 2023 15:48:50 +0200 Subject: [PATCH] style(vojtechmares.com): file formatting (expanded arrays) --- apps/vojtechmares.com/next-env.d.ts | 1 + apps/vojtechmares.com/tsconfig.json | 28 +++++++++++++++++++++++----- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/apps/vojtechmares.com/next-env.d.ts b/apps/vojtechmares.com/next-env.d.ts index 4f11a03..fd36f94 100644 --- a/apps/vojtechmares.com/next-env.d.ts +++ b/apps/vojtechmares.com/next-env.d.ts @@ -1,5 +1,6 @@ /// /// +/// // NOTE: This file should not be edited // see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/apps/vojtechmares.com/tsconfig.json b/apps/vojtechmares.com/tsconfig.json index fa4c3e9..d90131f 100644 --- a/apps/vojtechmares.com/tsconfig.json +++ b/apps/vojtechmares.com/tsconfig.json @@ -1,10 +1,19 @@ { - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"], + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts" + ], + "exclude": [ + "node_modules" + ], "compilerOptions": { "baseUrl": ".", "paths": { - "@/*": ["./*"] + "@/*": [ + "./*" + ] }, "composite": false, "declaration": true, @@ -20,12 +29,21 @@ "skipLibCheck": true, "strict": true, "target": "es5", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "noEmit": true, "incremental": true, "module": "esnext", "resolveJsonModule": true, - "jsx": "preserve" + "jsx": "preserve", + "plugins": [ + { + "name": "next" + } + ] } }