Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
thewilloftheshadow committed Jan 21, 2025
1 parent d6269e8 commit 961ca54
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 42 deletions.
2 changes: 1 addition & 1 deletion website/app/[...slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import {
import type { Metadata } from "next"
import { notFound } from "next/navigation"
import { utils } from "~/app/source"
import { useMDXComponents } from "~/components/mdx-components"
import { docsOptions } from "../layout.config"
import { metadataImage } from "../og/[...slug]/metadata"
import { useMDXComponents } from "~/components/mdx-components"

type Props = {
params: Promise<{
Expand Down
74 changes: 33 additions & 41 deletions website/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,35 @@
{
"compilerOptions": {
"baseUrl": ".",
"target": "ES2020",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"paths": {
"~/*": [
"./*"
]
},
"plugins": [
{
"name": "next"
}
],
"module": "esnext"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"postcss.config.cjs"
],
"exclude": [
"node_modules"
]
"compilerOptions": {
"baseUrl": ".",
"target": "ES2020",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"paths": {
"~/*": ["./*"]
},
"plugins": [
{
"name": "next"
}
],
"module": "esnext"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"postcss.config.cjs"
],
"exclude": ["node_modules"]
}

0 comments on commit 961ca54

Please sign in to comment.