mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
- Fix display label `image:` → `name:` for SnapshotPulling/SnapshotPulled in format_event_detail - Fix grammar: "an Sandbox" → "a Sandbox" in README and parallel.rs - Fix typo: "sandboxs" → "sandboxes" in parallel.rs - Update remaining "execution environment" comments to "sandbox" Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
716 B
JSON
29 lines
716 B
JSON
{
|
|
"include": [
|
|
"**/*",
|
|
"**/.server/**/*",
|
|
"**/.client/**/*",
|
|
".react-router/types/**/*"
|
|
],
|
|
"exclude": ["**/*.test.ts"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"types": ["node", "vite/client"],
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"rootDirs": [".", "./.react-router/types"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./app/*"],
|
|
"@qltysh/arc-api-client": ["../../packages/arc-api-client/src/index.ts"]
|
|
},
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true
|
|
}
|
|
}
|