open, interoperable sandbox platform for agents and humans 📦 ✨ pocketenv.io
claude-code atproto sandbox openclaw agent
at main 35 lines 885 B view raw
1{ 2 "compilerOptions": { 3 // Environment setup & latest features 4 "lib": ["ESNext"], 5 "target": "ESNext", 6 "module": "ESNext", 7 "moduleDetection": "force", 8 "jsx": "react-jsx", 9 "allowJs": true, 10 "allowSyntheticDefaultImports": true, 11 12 // Bundler mode 13 "moduleResolution": "node", 14 "allowImportingTsExtensions": true, 15 "verbatimModuleSyntax": true, 16 "noEmit": true, 17 18 "rootDir": ".", 19 "baseUrl": "src", 20 21 // Best practices 22 "strict": true, 23 "skipLibCheck": true, 24 "noFallthroughCasesInSwitch": true, 25 "noUncheckedIndexedAccess": true, 26 "noImplicitOverride": true, 27 28 // Some stricter flags (disabled by default) 29 "noUnusedLocals": false, 30 "noUnusedParameters": false, 31 "noPropertyAccessFromIndexSignature": false, 32 }, 33 "exclude": ["node_modules", "dist", "tests"], 34 "include": ["src", "scripts", "types"], 35}