mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 19:05:18 +00:00
16 lines
424 B
JSON
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"]
|
|
}
|