add typescript support to app
This commit is contained in:
parent
416544c384
commit
36236ceead
5
next-env.d.ts
vendored
Normal file
5
next-env.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
/// <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.
|
@ -18,6 +18,7 @@
|
|||||||
"@mui/lab": "latest",
|
"@mui/lab": "latest",
|
||||||
"@mui/material": "latest",
|
"@mui/material": "latest",
|
||||||
"@mui/x-tree-view": "^6.17.0",
|
"@mui/x-tree-view": "^6.17.0",
|
||||||
|
"@types/node": "^20.10.5",
|
||||||
"cytoscape-d3-force": "latest",
|
"cytoscape-d3-force": "latest",
|
||||||
"cytoscape-node-html-label": "latest",
|
"cytoscape-node-html-label": "latest",
|
||||||
"d3": "latest",
|
"d3": "latest",
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import Job from "../components/Job";
|
import Job from "../components/Job.js";
|
||||||
import Skill from "../components/Skill";
|
import Skill from "../components/Skill.js";
|
||||||
import Project from "../components/Project";
|
import Project from "../components/Project.js";
|
||||||
import Head from "next/head";
|
import Head from "next/head";
|
||||||
import { UsefulLinksList } from '../components/UsefulLinks'
|
import { UsefulLinksList } from '../components/UsefulLinks/index.js'
|
||||||
import { SocialLinksList } from '../components/SocialLinks/SocialLinks.js'
|
import { SocialLinksList } from '../components/SocialLinks/SocialLinks.js'
|
||||||
|
|
||||||
export default function Landing({ jobs, skills, projects }) {
|
export default function Landing({ jobs, skills, projects }) {
|
28
tsconfig.json
Normal file
28
tsconfig.json
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"lib": [
|
||||||
|
"dom",
|
||||||
|
"dom.iterable",
|
||||||
|
"esnext"
|
||||||
|
],
|
||||||
|
"allowJs": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
|
"strict": false,
|
||||||
|
"noEmit": true,
|
||||||
|
"incremental": 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
Block a user