mirror of
https://github.com/makeplane/plane.git
synced 2025-12-15 19:37:51 +01:00
18 lines
488 B
JSON
18 lines
488 B
JSON
{
|
|
"extends": "@plane/typescript-config/react-router.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDirs": [".", "./.react-router/types"],
|
|
"types": ["node", "vite/client"],
|
|
"paths": {
|
|
"@/app/*": ["app/*"],
|
|
"@/*": ["core/*"],
|
|
"@/plane-admin/*": ["ce/*"],
|
|
"@/styles/*": ["styles/*"]
|
|
},
|
|
"strictNullChecks": true
|
|
},
|
|
"include": ["**/*", "**/.server/**/*", "**/.client/**/*", ".react-router/types/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|