mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 15:49:36 +01:00
* [SILO-454] chore: refactor decorator, logger packages - add registerControllers function abstracting both rest, ws controllers - update logger to a simple json based logger * fix: logger instance and middleware * fix: type and module resolutions * fix: lodash type package update * fix: bypass lint errors in decorators * chore: format changes --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
16 lines
352 B
JSON
16 lines
352 B
JSON
{
|
|
"extends": "@plane/typescript-config/node-library.json",
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": ["ES2020"],
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["./src", "./*.ts"],
|
|
"exclude": ["dist", "build", "node_modules"]
|
|
}
|