From 00020dd6cf9a17c58b5f1706960a471f2569984f Mon Sep 17 00:00:00 2001 From: EthanAuyeung Date: Sun, 1 Oct 2023 16:28:14 -0700 Subject: [PATCH] Added file structure --- src/app/login.tsx | 8 ++++ src/app/page.tsx | 95 ----------------------------------------------- tsconfig.json | 24 ++++++++++-- 3 files changed, 28 insertions(+), 99 deletions(-) create mode 100644 src/app/login.tsx delete mode 100644 src/app/page.tsx diff --git a/src/app/login.tsx b/src/app/login.tsx new file mode 100644 index 00000000..2e64d750 --- /dev/null +++ b/src/app/login.tsx @@ -0,0 +1,8 @@ +import Image from 'next/image' +import styles from './page.module.css' + +export default function Home() { + return ( +

yo

+ ) +} diff --git a/src/app/page.tsx b/src/app/page.tsx deleted file mode 100644 index 9ddf9b95..00000000 --- a/src/app/page.tsx +++ /dev/null @@ -1,95 +0,0 @@ -import Image from 'next/image' -import styles from './page.module.css' - -export default function Home() { - return ( -
-
-

- Get started by editing  - src/app/page.tsx -

-
- - By{' '} - Vercel Logo - -
-
- -
- Next.js Logo -
- -
- -

- Docs -> -

-

Find in-depth information about Next.js features and API.

-
- - -

- Learn -> -

-

Learn about Next.js in an interactive course with quizzes!

-
- - -

- Templates -> -

-

Explore the Next.js 13 playground.

-
- - -

- Deploy -> -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
-
-
- ) -} diff --git a/tsconfig.json b/tsconfig.json index 80b29d1b..90e5f9d9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,11 @@ { "compilerOptions": { "target": "es5", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, "strict": true, @@ -19,7 +23,19 @@ } ], "paths": { - "@/*": ["./src/*"] - } + "@/*": [ + "./src/*" + ] + }, + "forceConsistentCasingInFileNames": true }, -} \ No newline at end of file + "include": [ + "next-env.d.ts", + ".next/types/**/*.ts", + "**/*.ts", + "**/*.tsx" + ], + "exclude": [ + "node_modules" + ] +}