mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-27 17:27:32 +08:00
chore: update tsconfig and docker compose (#4530)
* config changes * add types * ebadengine
This commit is contained in:
parent
c47c66146f
commit
a79a6be8b5
4 changed files with 10 additions and 8 deletions
|
|
@ -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:
|
||||
|
|
|
|||
7
backend/package-lock.json
generated
7
backend/package-lock.json
generated
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@
|
|||
"module": "commonjs",
|
||||
"target": "es6",
|
||||
"sourceMap": false,
|
||||
"allowJs": true,
|
||||
"checkJs": true,
|
||||
"allowJs": false,
|
||||
"checkJs": false,
|
||||
"outDir": "build",
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue