mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-17 13:33:16 -04:00
* feat(agent): add standalone agent runtime * fix(backups): bridge local executor to Effect restic API * fix(agent): add Bun and DOM types to agent tsconfig * refactor: wrap backup error in a tagged effect error * fix: pr feedbacks
23 lines
529 B
JSON
23 lines
529 B
JSON
{
|
|
"include": ["app/**/*"],
|
|
"compilerOptions": {
|
|
"plugins": [{ "name": "@effect/language-service" }],
|
|
"lib": ["DOM", "DOM.Iterable", "ES2023"],
|
|
"types": ["bun", "node", "vite/client"],
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"rootDirs": [".", "./.react-router/types"],
|
|
"paths": {
|
|
"~/*": ["./app/*"]
|
|
},
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true
|
|
}
|
|
}
|