Files
plane/apps/web/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

29 lines
854 B
JSON

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