diff options
Diffstat (limited to 'apps/web/tsconfig.json')
| -rw-r--r-- | apps/web/tsconfig.json | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index 7b285893..e5590d6b 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -1,26 +1,19 @@ { + "extends": "@repo/typescript-config/nextjs.json", "compilerOptions": { - "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, - "skipLibCheck": true, - "strict": true, - "noEmit": true, - "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "bundler", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve", - "incremental": true, "plugins": [ { "name": "next" } - ], - "paths": { - "@/*": ["./src/*"] - } + ] }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] + "include": [ + "cf-env.d.ts", + "env.d.ts", + "next.config.mjs", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts" + ], + "exclude": ["node_modules/"] } |