From cc3bd6ac09fc62b6a7fb061011021964da89b0b6 Mon Sep 17 00:00:00 2001 From: kilemensi Date: Sat, 31 Aug 2024 09:38:51 +0300 Subject: [PATCH] Fix tsconfig.json --- apps/engineeringblog/tsconfig.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/engineeringblog/tsconfig.json b/apps/engineeringblog/tsconfig.json index 651d6694f..d1475f39d 100644 --- a/apps/engineeringblog/tsconfig.json +++ b/apps/engineeringblog/tsconfig.json @@ -3,15 +3,15 @@ "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, - "strict": false, + "strict": true, "noEmit": true, - "incremental": true, - "module": "esnext", "esModuleInterop": true, - "moduleResolution": "node", + "module": "esnext", + "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", + "incremental": true, "plugins": [ { "name": "next" @@ -23,6 +23,6 @@ "@/commons-ui/next/*": ["../../packages/commons-ui-next/src/*"] } }, - "include": ["next-env.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "exclude": ["node_modules"] }