diff --git a/core/api/Makefile b/core/api/Makefile index 71676e31ef7..4711b50d3e0 100644 --- a/core/api/Makefile +++ b/core/api/Makefile @@ -108,10 +108,8 @@ integration-in-ci: unit-in-ci: . ./.env && \ LOGLEVEL=warn $(BIN_DIR)/jest --config ./test/unit/jest.config.js --ci --bail --maxWorkers=50% -check-implicit: - pnpm run tsc-check-noimplicitany -check-code: check-implicit +check-code: pnpm run tsc-check pnpm run eslint-check pnpm run build diff --git a/core/api/package.json b/core/api/package.json index 619f31eab5f..31d873a9001 100644 --- a/core/api/package.json +++ b/core/api/package.json @@ -1,7 +1,6 @@ { "name": "api", "scripts": { - "tsc-check-noimplicitany": "tsc --noEmit -p tsconfig.no-implicit-any.json", "tsc-check": "tsc --noEmit", "madge-check": "madge --circular --extensions ts ./src", "madge-check-tests": "madge --circular --extensions ts ./test", diff --git a/core/api/src/debug/websocket/package.json b/core/api/src/debug/websocket/package.json index 34790829a16..a3f48c988e5 100644 --- a/core/api/src/debug/websocket/package.json +++ b/core/api/src/debug/websocket/package.json @@ -2,7 +2,6 @@ "name": "galoy", "type": "module", "scripts": { - "tsc-check-noimplicitany": "tsc --noEmit -p tsconfig.no-implicit-any.json", "tsc-check": "tsc --noEmit", "eslint-check": "eslint \"{src,test}/**/*.ts\"", "eslint-fix": "eslint \"{src,test}/**/*.ts\" --fix", diff --git a/core/api/src/debug/websocket/tsconfig.json b/core/api/src/debug/websocket/tsconfig.json index 9b41a66e8d2..6d7ab522b38 100644 --- a/core/api/src/debug/websocket/tsconfig.json +++ b/core/api/src/debug/websocket/tsconfig.json @@ -5,7 +5,7 @@ "sourceMap": true, "strict": true, "target": "es2020", - "noImplicitAny": false, + "noImplicitAny": true, "useUnknownInCatchVariables": false, "esModuleInterop": true, "baseUrl": "./", diff --git a/core/api/tsconfig-build.json b/core/api/tsconfig-build.json index aa3e79ccb06..0f2d5b98013 100644 --- a/core/api/tsconfig-build.json +++ b/core/api/tsconfig-build.json @@ -1,7 +1,4 @@ { "extends": "./tsconfig.json", "include": ["src/servers/**/*.ts", "src/**/*.d.ts"], - "compilerOptions": { - "noImplicitAny": true - } } diff --git a/core/api/tsconfig.d.json b/core/api/tsconfig.d.json deleted file mode 100644 index a44f3ec3541..00000000000 --- a/core/api/tsconfig.d.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": "./tsconfig.json", - "include": ["src/**/*.d.ts"] -} diff --git a/core/api/tsconfig.json b/core/api/tsconfig.json index fa0828c882c..fd467c86682 100644 --- a/core/api/tsconfig.json +++ b/core/api/tsconfig.json @@ -8,6 +8,7 @@ "esModuleInterop": true, "baseUrl": "./", "moduleResolution": "node", + "noImplicitAny": true, "resolveJsonModule": true, "paths": { "@/*": [ diff --git a/core/api/tsconfig.no-implicit-any.json b/core/api/tsconfig.no-implicit-any.json deleted file mode 100644 index 39d2a115b2a..00000000000 --- a/core/api/tsconfig.no-implicit-any.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.d.json", - "include": ["src/**/*"], - "exclude": [ - "src/debug", - "src/migrations", - "src/services/swap/providers/lightning-labs/protos" - ], - "compilerOptions": { - "noImplicitAny": true - } -}