Skip to content

Commit

Permalink
Restore skipLibCheck flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mersocarlin committed Apr 14, 2024
1 parent 9090f23 commit 4aaa255
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/utils/post.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async function parseMdxAsBlogPost({

const { code, frontmatter, matter } = await bundleMDX({
source: postContents,
mdxOptions(options) {
mdxOptions(options: any) {
options.rehypePlugins = [
...(options.rehypePlugins ?? []),
rehypeAutolinkHeadings as any,
Expand Down
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"date-fns": "^2.29.3",
"esbuild": "^0.20.2",
"mdx-bundler": "^10.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,19 @@
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "ES2019",
"strict": true,
"allowJs": true,
"module": "esnext",
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
},

"skipLibCheck": true,
// Remix takes care of building everything in `remix build`.
"noEmit": true
}
Expand Down

0 comments on commit 4aaa255

Please sign in to comment.