mirror of
https://github.com/makeplane/plane.git
synced 2026-02-24 20:20:49 +01:00
* feat: pdf export * fix: tests * fix: tests --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
21 lines
502 B
JSON
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"]
|
|
}
|