From fb0172b22620ddf4a3f46961f286f3cb1aa484dc Mon Sep 17 00:00:00 2001 From: Rajat Bhatt Date: Sat, 14 Oct 2023 20:53:17 -0400 Subject: [PATCH] Remove tsconfig.json --- examples/nextjs-app-router/tsconfig.json | 35 ------------------------ 1 file changed, 35 deletions(-) delete mode 100644 examples/nextjs-app-router/tsconfig.json diff --git a/examples/nextjs-app-router/tsconfig.json b/examples/nextjs-app-router/tsconfig.json deleted file mode 100644 index b2c146a..0000000 --- a/examples/nextjs-app-router/tsconfig.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "compilerOptions": { - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], - "allowJs": true, - "skipLibCheck": true, - "strict": false, - "forceConsistentCasingInFileNames": true, - "noEmit": true, - "incremental": true, - "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "node", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve", - "plugins": [ - { - "name": "next" - } - ] - }, - "include": [ - "next-env.d.ts", - ".next/types/**/*.ts", - "**/*.ts", - "**/*.tsx" - ], - "exclude": [ - "node_modules" - ] -}