diff --git a/apps/oxlint/tsconfig.json b/apps/oxlint/tsconfig.json index c8ba3db460005..3d6518d61014c 100644 --- a/apps/oxlint/tsconfig.json +++ b/apps/oxlint/tsconfig.json @@ -5,6 +5,7 @@ "noEmit": true, "target": "ESNext", "allowImportingTsExtensions": true, + "strict": false, "noImplicitAny": true, "strictNullChecks": true, "skipLibCheck": true, diff --git a/napi/parser/tsconfig.json b/napi/parser/tsconfig.json index 7ffbe8cae6f0f..3d380a9be514e 100644 --- a/napi/parser/tsconfig.json +++ b/napi/parser/tsconfig.json @@ -5,6 +5,7 @@ "noEmit": true, "target": "ESNext", "allowImportingTsExtensions": true, - "noUnusedLocals": true + "noUnusedLocals": true, + "strict": false } } diff --git a/tasks/e2e/tsconfig.json b/tasks/e2e/tsconfig.json index 28a60910eee83..089ac8a583fcb 100644 --- a/tasks/e2e/tsconfig.json +++ b/tasks/e2e/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "experimentalDecorators": true, "module": "esnext", - "noUnusedLocals": true + "noUnusedLocals": true, + "strict": false } }