sandbox-agent/factory/packages/frontend/tsconfig.json
2026-03-09 16:34:27 -07:00

16 lines
424 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"target": "ES2023",
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "react-jsx",
"declaration": false,
"types": ["vite/client", "vitest/globals"],
"baseUrl": ".",
"paths": {
"@workbench-runtime": ["./src/lib/workbench-runtime.remote.ts"]
}
},
"include": ["src", "vite.config.ts", "vitest.config.ts"]
}