Menu
popagent
publicLatest change d55058a6f163a78c89de066b0193f89954cdfc75 - Exclude autonomous runtime checkouts from verification by Ólafur Búi Ólafsson
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["DOM", "ESNext"],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"types": ["bun"],
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": false
},
"exclude": ["workspace/**", "data/self-update/**", ".worktrees/**", ".refrepos/**"]
}