mirror of
https://github.com/makeplane/plane.git
synced 2025-12-29 00:24:56 +01:00
* dev: 1 * fix: tubro name * fix : floating sidebar * --wip-- [skip ci] * wip-2 * --wip-- [skip ci] * wip * fix: working wiki --------- Co-authored-by: VipinDevelops <vipinchaudhary1809@gmail.com>
25 lines
558 B
JSON
25 lines
558 B
JSON
{
|
|
"extends": "@plane/typescript-config/nextjs.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["core/*"],
|
|
"@/helpers/*": ["helpers/*"],
|
|
"@/public/*": ["public/*"],
|
|
"@/styles/*": ["styles/*"],
|
|
"@/plane-web/*": ["ee/*"],
|
|
"@/ce/*": ["ce/*"]
|
|
},
|
|
"plugins": [{ "name": "next" }],
|
|
"strictNullChecks": true
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"ee/components/issues/issue-details/sidebar"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|