Skip to content

Commit

Permalink
Added file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanAuyeung committed Oct 1, 2023
1 parent 567952c commit 00020dd
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 99 deletions.
8 changes: 8 additions & 0 deletions src/app/login.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import Image from 'next/image'
import styles from './page.module.css'

export default function Home() {
return (
<h1> yo </h1>
)
}
95 changes: 0 additions & 95 deletions src/app/page.tsx

This file was deleted.

24 changes: 20 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -19,7 +23,19 @@
}
],
"paths": {
"@/*": ["./src/*"]
}
"@/*": [
"./src/*"
]
},
"forceConsistentCasingInFileNames": true
},
}
"include": [
"next-env.d.ts",
".next/types/**/*.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}

0 comments on commit 00020dd

Please sign in to comment.