{ "compilerOptions": { "composite": true, "emitDeclarationOnly": true, "declarationMap": true, "rootDir": "${configDir}/src", "outDir": "${configDir}/dist", "module": "ES2022", "moduleResolution": "bundler", "moduleDetection": "force", "types": [], "target": "ES2022", "lib": ["ES2022", "DOM", "DOM.Iterable"], "jsx": "react-jsx", "strict": true, "exactOptionalPropertyTypes": true, "forceConsistentCasingInFileNames": true, "isolatedModules": true, "allowImportingTsExtensions": true, "skipLibCheck": true, "paths": { "common": ["./packages/common/src/index.ts"], "common/*": ["./packages/common/src/*.ts"], "backend": ["./packages/backend/src/index.ts"], "backend/*": ["./packages/backend/src/*.ts"], }, "plugins": [ { "name": "@effect/language-service" }, ], }, "include": ["${configDir}/src"], }