Skip to content

Commit

Permalink
fix: exclude code dir (#557)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickfrosty authored Oct 11, 2024
1 parent 17cc7d3 commit 4f89771
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@
"paths": {
"contentlayer/generated": ["./.contentlayer/generated"],
"@/*": ["./src/*"],
"@@/*": ["./*"]
"@@/*": ["./*"],
},
"plugins": [
{
"name": "next"
}
]
"name": "next",
},
],
},
"include": [
".contentlayer/generated",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
".next/types/**/*.ts",
],
"exclude": ["node_modules"]
"exclude": ["node_modules", "code"],
}

0 comments on commit 4f89771

Please sign in to comment.