mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 22:09:12 +02:00
* chore: ff oidc saml init * chore: admin feature flag endpoint * [WEB-2413] chore: feature flag for admin app and OIDC SAML Auth validation. --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
23 lines
488 B
JSON
23 lines
488 B
JSON
{
|
|
"extends": "tsconfig/nextjs.json",
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "preserve",
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"@/*": ["core/*"],
|
|
"@/helpers/*": ["helpers/*"],
|
|
"@/public/*": ["public/*"],
|
|
"@/plane-admin/*": ["ee/*"],
|
|
"@/ce/*": ["ce/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
}
|
|
}
|