Skip to content

Commit

Permalink
cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
ThalesBMC committed Mar 22, 2021
1 parent e8474d3 commit f5399f7
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 209 deletions.
2 changes: 2 additions & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/// <reference types="next" />
/// <reference types="next/types/global" />
1 change: 0 additions & 1 deletion pages/_app.js → pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import '../styles/globals.css'

function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
Expand Down
5 changes: 0 additions & 5 deletions pages/api/hello.js

This file was deleted.

65 changes: 0 additions & 65 deletions pages/index.js

This file was deleted.

14 changes: 14 additions & 0 deletions pages/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import Head from 'next/head'


export default function Home() {
return (
<div >
<Head>
<title>Course website</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<div>Course</div>
</div>
)
}
122 changes: 0 additions & 122 deletions styles/Home.module.css

This file was deleted.

16 changes: 0 additions & 16 deletions styles/globals.css

This file was deleted.

29 changes: 29 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}

1 comment on commit f5399f7

@vercel
Copy link

@vercel vercel bot commented on f5399f7 Mar 22, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.