mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
* [WEB-3985] feat: common postcss config and local fonts across all plane applications * improvement: split fonts into a separate exports
16 lines
416 B
JSON
16 lines
416 B
JSON
{
|
|
"extends": "@plane/typescript-config/nextjs.json",
|
|
"compilerOptions": {
|
|
"plugins": [{ "name": "next" }],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["core/*"],
|
|
"@/public/*": ["public/*"],
|
|
"@/plane-admin/*": ["ce/*"],
|
|
"@/styles/*": ["styles/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "next.config.js", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|