Skip to content

Commit

Permalink
test(SATP-Hermes): enable decorators needed for gateway coordinator c…
Browse files Browse the repository at this point in the history
…hecks

Signed-off-by: Rafael Belchior <rafael.belchior@tecnico.ulisboa.pt>
  • Loading branch information
RafaelAPB authored and AndreAugusto11 committed Mar 1, 2024
1 parent 0aa6f76 commit 8c675a1
Show file tree
Hide file tree
Showing 4 changed files with 916 additions and 294 deletions.
3 changes: 1 addition & 2 deletions packages/cactus-plugin-satp-hermes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"generate-sdk:typescript-axios": "openapi-generator-cli generate -i ./src/main/json/openapi.json -g typescript-axios -o ./src/main/typescript/generated/openapi/typescript-axios/ --reserved-words-mappings protected=protected --ignore-file-override ../../openapi-generator-ignore",
"pretsc": "npm run generate-sdk",
"tsc": "tsc --project ./tsconfig.json",
"watch": "npm-watch"
"watch": "tsc --build --watch"
},
"dependencies": {
"@bufbuild/buf": "1.29.0",
Expand All @@ -73,7 +73,6 @@
"class-validator": "0.14.1",
"crypto-js": "4.2.0",
"fs-extra": "11.1.1",
"grpc": "1.24.11",
"knex": "2.4.0",
"secp256k1": "4.0.3",
"socket.io": "4.5.4",
Expand Down
2 changes: 0 additions & 2 deletions packages/cactus-plugin-satp-hermes/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
"rootDir": "./src/",
"tsBuildInfoFile": "../../.build-cache/cactus-plugin-satp-hermes.tsbuildinfo",
"moduleResolution": "Node16",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
},
"ts-node": {
"files": true
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,8 @@
"esModuleInterop": true,
"inlineSourceMap": true,
"forceConsistentCasingInFileNames": true,
"useUnknownInCatchVariables": false
"useUnknownInCatchVariables": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
}
}
Loading

0 comments on commit 8c675a1

Please sign in to comment.