Skip to content

Commit

Permalink
fix(tsconfig): fixed tsconfig file
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhi Markan committed Nov 30, 2023
1 parent e9ed904 commit d8df948
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 30 deletions.
38 changes: 19 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@
"@nestjs/cli": "^10.2.1",
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^10.2.10",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/node21": "^21.0.0",
"@types/chance": "^1.1.6",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.0",
"@types/node": "^20.10.1",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
Expand Down Expand Up @@ -108,7 +108,7 @@
"ts-node": "^10.9.1"
},
"engines": {
"node": ">=18",
"node": ">=20",
"npm": ">=9.8.0"
}
}
9 changes: 1 addition & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "./node_modules/@tsconfig/node21/tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"moduleResolution": "node",
"rootDirs": ["src"],
"lib": ["ES2022"],
"target": "ES2022",
"composite": true,
"declaration": true,
"declarationMap": true,
Expand Down

0 comments on commit d8df948

Please sign in to comment.