diff --git a/src/lib/application/files/ts/eslint.config.mjs b/src/lib/application/files/ts/eslint.config.mjs index 4e9f8271c..59898ddcf 100644 --- a/src/lib/application/files/ts/eslint.config.mjs +++ b/src/lib/application/files/ts/eslint.config.mjs @@ -2,9 +2,10 @@ import eslint from '@eslint/js'; import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'; import globals from 'globals'; +import { defineConfig } from 'eslint/config'; import tseslint from 'typescript-eslint'; -export default tseslint.config( +export default defineConfig( { ignores: ['eslint.config.mjs'], }, @@ -29,7 +30,7 @@ export default tseslint.config( '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-floating-promises': 'warn', '@typescript-eslint/no-unsafe-argument': 'warn', - "prettier/prettier": ["error", { endOfLine: "auto" }], + 'prettier/prettier': ['error', { endOfLine: 'auto' }], }, }, ); diff --git a/src/lib/application/files/ts/package.json b/src/lib/application/files/ts/package.json index 2bc1535ac..00a830c47 100644 --- a/src/lib/application/files/ts/package.json +++ b/src/lib/application/files/ts/package.json @@ -20,36 +20,36 @@ "test:e2e": "jest --config ./test/jest-e2e.json" }, "dependencies": { - "@nestjs/common": "^11.0.1", - "@nestjs/core": "^11.0.1", - "@nestjs/platform-express": "^11.0.1", + "@nestjs/common": "^11.1.19", + "@nestjs/core": "^11.1.19", + "@nestjs/platform-express": "^11.1.19", "reflect-metadata": "^0.2.2", - "rxjs": "^7.8.1" + "rxjs": "^7.8.2" }, "devDependencies": { - "@eslint/eslintrc": "^3.2.0", - "@eslint/js": "^9.18.0", - "@nestjs/cli": "^11.0.0", - "@nestjs/schematics": "^11.0.0", - "@nestjs/testing": "^11.0.1", - "@types/express": "^5.0.0", + "@eslint/eslintrc": "^3.3.5", + "@eslint/js": "^10.0.1", + "@nestjs/cli": "^11.0.21", + "@nestjs/schematics": "^11.1.0", + "@nestjs/testing": "^11.1.19", + "@types/express": "^5.0.6", "@types/jest": "^30.0.0", - "@types/node": "^24.0.0", - "@types/supertest": "^7.0.0", - "eslint": "^9.18.0", - "eslint-config-prettier": "^10.0.1", - "eslint-plugin-prettier": "^5.2.2", - "globals": "^17.0.0", - "jest": "^30.0.0", - "prettier": "^3.4.2", + "@types/node": "^25.6.0", + "@types/supertest": "^7.2.0", + "eslint": "^10.3.0", + "eslint-config-prettier": "^10.1.8", + "eslint-plugin-prettier": "^5.5.5", + "globals": "^17.6.0", + "jest": "^30.3.0", + "prettier": "^3.8.3", "source-map-support": "^0.5.21", - "supertest": "^7.0.0", - "ts-jest": "^29.2.5", - "ts-loader": "^9.5.2", + "supertest": "^7.2.2", + "ts-jest": "^29.4.9", + "ts-loader": "^9.5.7", "ts-node": "^10.9.2", "tsconfig-paths": "^4.2.0", - "typescript": "^5.7.3", - "typescript-eslint": "^8.20.0" + "typescript": "^6.0.3", + "typescript-eslint": "^8.59.1" }, "jest": { "moduleFileExtensions": [ diff --git a/src/lib/application/files/ts/tsconfig.json b/src/lib/application/files/ts/tsconfig.json index f963e060e..e3a30af4d 100644 --- a/src/lib/application/files/ts/tsconfig.json +++ b/src/lib/application/files/ts/tsconfig.json @@ -13,7 +13,6 @@ "target": "ES2023", "sourceMap": true, "outDir": "./dist", - "baseUrl": "./", "incremental": true, "skipLibCheck": true, "strictNullChecks": true,