mirror of
https://github.com/makeplane/plane.git
synced 2025-12-28 16:06:33 +01:00
15 lines
334 B
JSON
15 lines
334 B
JSON
{
|
|
"extends": "@plane/typescript-config/node-library.json",
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": ["ES2020"],
|
|
"rootDir": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
},
|
|
},
|
|
"include": ["./src", "./*.ts"],
|
|
"exclude": ["dist", "build", "node_modules"]
|
|
}
|