Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Advanced Clerk auth patterns for Next.js: Server Actions, middleware, caching, and App Router integration.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
templates/nextjs-basic-auth/tsconfig.json
1{2"compilerOptions": {3"target": "ES2017",4"lib": ["dom", "dom.iterable", "esnext"],5"allowJs": true,6"skipLibCheck": true,7"strict": true,8"noEmit": true,9"esModuleInterop": true,10"module": "esnext",11"moduleResolution": "bundler",12"resolveJsonModule": true,13"isolatedModules": true,14"jsx": "preserve",15"incremental": true,16"plugins": [{ "name": "next" }],17"paths": {18"@/*": ["./src/*"]19}20},21"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],22"exclude": ["node_modules"]23}24