Skip to content

Commit

Permalink
chore: tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
nickfrosty committed Nov 30, 2023
1 parent 90b1ac8 commit e79cd82
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference types="next/navigation-types/compat/navigation" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
10 changes: 8 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,19 @@
"contentlayer/generated": ["./.contentlayer/generated"],
"@/*": ["./src/*"],
"@@/*": ["./*"]
}
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
".contentlayer/generated",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
}

0 comments on commit e79cd82

Please sign in to comment.