Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
manzoorwanijk committed Jan 28, 2024
1 parent d5ab6e1 commit aef8ff9
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 1,103 deletions.
2 changes: 1 addition & 1 deletion examples/next-auth-app-router/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default async function Home() {
if (!session) {
return (
<Box>
<Heading as="h1">Not logged in to see this</Heading>
<Heading as="h1">Not logged in to see what is here</Heading>
</Box>
);
}
Expand Down
8 changes: 0 additions & 8 deletions examples/next-auth-app-router/next-auth.d.ts

This file was deleted.

61 changes: 24 additions & 37 deletions examples/next-auth-app-router/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,25 @@
{
"include": [
"process.d.ts",
"next-env.d.ts",
"next-auth.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"compilerOptions": {
"target": "ES2019",
"lib": [
"DOM",
"DOM.Iterable",
"ES2019"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"exclude": [
"node_modules"
]
}
"include": ["process.d.ts", "next-env.d.ts", "next-auth.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"compilerOptions": {
"target": "ES2019",
"lib": ["DOM", "DOM.Iterable", "ES2019"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"exclude": ["node_modules"]
}
Loading

0 comments on commit aef8ff9

Please sign in to comment.