mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
* fix: lint config package updates * fix: tsconfig changes * fix: lint config setup * fix: lint errors and adding new rules * fix: lint errors * fix: ui and editor lints * fix: build error * fix: editor tsconfig * fix: lint errors * fix: types fixes --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
16 lines
418 B
JSON
16 lines
418 B
JSON
{
|
|
"extends": "@plane/typescript-config/nextjs.json",
|
|
"compilerOptions": {
|
|
"plugins": [{ "name": "next" }],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["core/*"],
|
|
"@/helpers/*": ["helpers/*"],
|
|
"@/public/*": ["public/*"],
|
|
"@/plane-admin/*": ["ce/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "next.config.js", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|