Files
plane/apps/admin/tsconfig.json
T
Aaron ReismanandPrateek Shourya a942131531 chore: improve TypeScript configuration and build setup
- Update base tsconfig with stricter options (noUncheckedIndexedAccess, sourceMap, ES2022 target/lib)
- Standardize tsdown configs with platform: "neutral" for .js/.d.ts output
- Add node-linker=isolated to .npmrc for Docker compatibility
- Remove unused nextjs.json config
- Add noUncheckedIndexedAccess opt-outs for packages not yet ready
2026-01-08 14:43:18 +05:30

25 lines
733 B
JSON

{
"extends": "@plane/typescript-config/react-router.json",
"compilerOptions": {
"composite": false,
"noImplicitOverride": false,
"exactOptionalPropertyTypes": false,
"noUncheckedIndexedAccess": false,
"noUnusedParameters": false,
"noUnusedLocals": false,
"rootDirs": [".", "./.react-router/types"],
"types": ["vite/client"],
"paths": {
"package.json": ["./package.json"],
"ce/*": ["./ce/*"],
"@/app/*": ["./app/*"],
"@/*": ["./core/*"],
"@/plane-admin/*": ["./ee/*"],
"@/ce/*": ["./ce/*"],
"@/styles/*": ["./styles/*"]
}
},
"include": ["**/*", "**/.server/**/*", "**/.client/**/*", ".react-router/types/**/*"],
"exclude": ["node_modules"]
}