mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
16 lines
408 B
JSON
16 lines
408 B
JSON
{
|
|
"extends": "@plane/typescript-config/nextjs.json",
|
|
"compilerOptions": {
|
|
"plugins": [{ "name": "next" }],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["core/*"],
|
|
"@/public/*": ["public/*"],
|
|
"@/plane-admin/*": ["ee/*"],
|
|
"@/ce/*": ["ce/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "next.config.js", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|