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
14 changed files with 690 additions and 7 deletions

View File

@@ -0,0 +1,26 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node.js Library",
"extends": "./base.json",
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2020",
"lib": ["ES2020"],
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"sourceMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "build"]
}

View File

@@ -6,6 +6,7 @@
"files": [
"base.json",
"nextjs.json",
"react-library.json"
"react-library.json",
"node-library.json"
]
}