mirror of
https://github.com/makeplane/plane.git
synced 2025-12-28 16:06:33 +01:00
* feat: express decorators for rest apis and websocket * fix: added package dependency * fix: refactor decorators
22 lines
366 B
JSON
22 lines
366 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|