2022-11-19 19:51:26 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-11-06 14:08:48 +05:30
|
|
|
"rootDirs": [".", "./.react-router/types"],
|
2024-03-19 20:08:35 +05:30
|
|
|
"paths": {
|
2025-12-05 17:33:51 +07:00
|
|
|
"@/*": ["./core/*"],
|
|
|
|
|
"@/app/*": ["./app/*"],
|
|
|
|
|
"@/helpers/*": ["./helpers/*"],
|
|
|
|
|
"@/plane-web/*": ["./ce/*"],
|
|
|
|
|
"@/styles/*": ["./styles/*"],
|
|
|
|
|
"app/*": ["./app/*"],
|
|
|
|
|
"package.json": ["./package.json"],
|
|
|
|
|
"ce/*": ["./ce/*"]
|
2024-04-06 17:13:24 +05:30
|
|
|
},
|
2025-12-05 17:33:51 +07:00
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noImplicitReturns": false,
|
|
|
|
|
"noImplicitOverride": false,
|
|
|
|
|
"types": ["vite/client"]
|
2024-09-23 17:10:38 +05:30
|
|
|
},
|
2025-12-05 17:33:51 +07:00
|
|
|
"extends": "@plane/typescript-config/react-router.json",
|
|
|
|
|
"include": ["**/*", "**/.server/**/*", "**/.client/**/*", ".react-router/types/**/*"]
|
2022-11-19 19:51:26 +05:30
|
|
|
}
|