feat: express decorators for rest apis and websocket (#6818)

* feat: express decorators for rest apis and websocket

* fix: added package dependency

* fix: refactor decorators
This commit is contained in:
M. Palanikannan 2025-03-26 20:24:05 +05:30 committed by GitHub
parent ae6e5a48fa
commit 993713925a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 690 additions and 7 deletions

View file

@ -0,0 +1,21 @@
{
"extends": "@plane/typescript-config/node-library.json",
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"lib": ["ES2020"],
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"./src"
],
"exclude": [
"dist",
"build",
"node_modules"
]
}