mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
* refactor: edition specific migration * revert: pagination from space endpoints * fix: project publish --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
28 lines
567 B
JSON
28 lines
567 B
JSON
{
|
|
"extends": "tsconfig/nextjs.json",
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "additional.d.ts", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "preserve",
|
|
"paths": {
|
|
"@/*": ["core/*"],
|
|
"@/helpers/*": ["helpers/*"],
|
|
"@/public/*": ["public/*"],
|
|
"@/styles/*": ["styles/*"],
|
|
"@/plane-web/*": ["ce/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"strictNullChecks": true
|
|
}
|
|
}
|