Skip to content
Snippets Groups Projects
Commit a37bb851 authored by Dysk0's avatar Dysk0
Browse files

Solved .json problems with VCS

parent e16ffdaf
No related branches found
No related tags found
No related merge requests found
{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Next.js: Node",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"port": 9229,
"restart": true,
"console": "integratedTerminal",
"env": {
"NODE_OPTIONS": "--inspect"
},
"cwd": "${workspaceFolder}"
}
]
}
\ No newline at end of file
/// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
......@@ -8,5 +8,10 @@
"next": "^14.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
}
}
}
\ No newline at end of file
......@@ -17,7 +17,7 @@ const Home: React.FC = () => {
</h1>
<p className={styles.description}>
Yay wassup maniggis!
<code className={styles.code}>src/pages/index.tsx</code>
<code className={styles.code}>src/pages/index.tsx This is code!!</code>
</p>
</main>
<footer className={styles.footer}>
......
{
"compilerOptions": {
"target": "es2016",
"lib": ["dom", "dom.iterable", "es2016"],
"lib": [
"dom",
"dom.iterable",
"es2016"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
......@@ -12,8 +16,15 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
"jsx": "preserve",
"incremental": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}
\ No newline at end of file
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment