chore: update tsconfig and docker compose (#4530)

* config changes

* add types

* ebadengine
This commit is contained in:
Bruce Berrios 2023-08-12 10:41:36 -04:00 committed by GitHub
parent c47c66146f
commit a79a6be8b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 8 deletions

View file

@ -8,8 +8,6 @@ services:
restart: on-failure
volumes:
- redis-data:/data
networks:
- test-network
monkeytype-mongodb:
container_name: monkeytype-mongodb
@ -19,11 +17,7 @@ services:
- mongo-data:/data/db
ports:
- "${DOCKER_DB_PORT:-27017}:${DOCKER_DB_PORT:-27017}"
networks:
- test-network
volumes:
mongo-data:
redis-data:
networks:
test-network:

View file

@ -54,6 +54,7 @@
"@types/node-fetch": "2.6.1",
"@types/nodemailer": "6.4.7",
"@types/object-hash": "2.2.1",
"@types/string-similarity": "4.0.0",
"@types/supertest": "2.0.12",
"@types/swagger-stats": "0.95.4",
"@types/swagger-ui-express": "4.1.3",
@ -1911,6 +1912,12 @@
"dev": true,
"license": "MIT"
},
"node_modules/@types/string-similarity": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@types/string-similarity/-/string-similarity-4.0.0.tgz",
"integrity": "sha512-dMS4S07fbtY1AILG/RhuwmptmzK1Ql8scmAebOTJ/8iBtK/KI17NwGwKzu1uipjj8Kk+3mfPxum56kKZE93mzQ==",
"dev": true
},
"node_modules/@types/strip-bom": {
"version": "3.0.0",
"dev": true,

View file

@ -62,6 +62,7 @@
"@types/node-fetch": "2.6.1",
"@types/nodemailer": "6.4.7",
"@types/object-hash": "2.2.1",
"@types/string-similarity": "4.0.0",
"@types/supertest": "2.0.12",
"@types/swagger-stats": "0.95.4",
"@types/swagger-ui-express": "4.1.3",

View file

@ -4,8 +4,8 @@
"module": "commonjs",
"target": "es6",
"sourceMap": false,
"allowJs": true,
"checkJs": true,
"allowJs": false,
"checkJs": false,
"outDir": "build",
"moduleResolution": "node",
"resolveJsonModule": true,