From b6f494dc6d7aa4b8fc8ecea5813737d12122f959 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Mon, 24 Jun 2024 23:31:19 +0200 Subject: [PATCH] Renamed "_app.js" to "_app.tsx", and adjusted "tsconfig.json" file --- pages/{_app.js => _app.tsx} | 0 tsconfig.json | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename pages/{_app.js => _app.tsx} (100%) diff --git a/pages/_app.js b/pages/_app.tsx similarity index 100% rename from pages/_app.js rename to pages/_app.tsx diff --git a/tsconfig.json b/tsconfig.json index e7a8a9e..2566b95 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,6 +21,6 @@ "@/*": ["./*"] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "lib/Hoc/withAuth.jsx" , "**/*.mdx", "pages/_app.jsx"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "lib/Hoc/withAuth.jsx" , "**/*.mdx", "pages/_app.tsx"], "exclude": ["node_modules"] }