mirror of
https://github.com/makeplane/plane.git
synced 2026-06-13 19:19:54 +00:00
85d90030cf
Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
20 lines
469 B
JSON
20 lines
469 B
JSON
{
|
|
"extends": "@plane/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"exactOptionalPropertyTypes": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitOverride": false,
|
|
"noImplicitReturns": false,
|
|
"noUnusedLocals": false,
|
|
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/plane-live/*": ["./src/ce/*"]
|
|
},
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|