mirror of https://github.com/kern/filepizza
Initialize next
parent
f5b8f27732
commit
a21f20486b
@ -1,4 +1,5 @@
|
||||
.DS_Store
|
||||
.next
|
||||
node_modules
|
||||
dist
|
||||
resources
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
.DS_Store
|
||||
.next
|
||||
node_modules
|
||||
dist
|
||||
|
||||
@ -0,0 +1,2 @@
|
||||
/// <reference types="next" />
|
||||
/// <reference types="next/types/global" />
|
||||
@ -0,0 +1,5 @@
|
||||
const IndexPage = () => {
|
||||
return <div>Welcome to Next.js!</div>
|
||||
}
|
||||
|
||||
export default IndexPage
|
||||
@ -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"
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue