Files
plane/apps/live/tsconfig.json
M. Palanikannan b31c0195bc fix: pdf export (#8564)
* feat: pdf export

* fix: tests

* fix: tests

---------

Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
2026-01-26 22:08:10 +05:30

21 lines
502 B
JSON

{
"extends": "@plane/typescript-config/base.json",
"compilerOptions": {
"exactOptionalPropertyTypes": false,
"noUnusedParameters": false,
"noImplicitOverride": false,
"noImplicitReturns": false,
"noUnusedLocals": false,
"jsx": "react-jsx",
"paths": {
"@/*": ["./src/*"],
"@/plane-live/*": ["./src/ce/*"]
},
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["src", "tests"],
"exclude": ["node_modules", "dist"]
}