* feat: eslint * fix: lint * fix: lint * [WIKI-804] fix: refactor image uploader (#8210) * fix: refactor uploader * fix: props * fix: sites fix * fix: update @makeplane/plane-node-sdk version and refactor relation type imports * fix: update ESLint max-warnings threshold in package.json * fix: eslint formatting issues * fix: add captions track to video player component --------- Co-authored-by: M. Palanikannan <[email protected]> Co-authored-by: Prateek Shourya <[email protected]>
23 lines
670 B
JSON
23 lines
670 B
JSON
{
|
|
"extends": "@plane/typescript-config/react-router.json",
|
|
"compilerOptions": {
|
|
"noImplicitOverride": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": false,
|
|
"rootDirs": [".", "./.react-router/types"],
|
|
"types": ["vite/client"],
|
|
"paths": {
|
|
"package.json": ["./package.json"],
|
|
"ce/*": ["./ce/*"],
|
|
"@/app/*": ["./app/*"],
|
|
"@/*": ["./core/*"],
|
|
"@/plane-admin/*": ["./ee/*"],
|
|
"@/ce/*": ["./ce/*"],
|
|
"@/styles/*": ["./styles/*"]
|
|
}
|
|
},
|
|
"include": ["**/*", "**/.server/**/*", "**/.client/**/*", ".react-router/types/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|