mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 05:21:14 +02:00
* dev: workspace and project publish endpoints * dev: update folder structure to match the global structure * dev: add anchor to workspace and project pages * dev: formatting errors * dev: add public endpoint for pages * dev: publish workflow added * dev: update settings endpoint * dev: space app pages * chore: issue embeds in page publish * fix: page not updating * dev: added issue embed * chore: separate edition specific code * chore: update issue embed component * refactor: space app pages store * chore: issue embed error --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@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/*": ["ee/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"strictNullChecks": true
|
|
}
|
|
}
|