agent-orchestrator/packages/web/tsconfig.json

17 lines
372 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"jsx": "preserve",
"module": "ESNext",
"moduleResolution": "Bundler",
"plugins": [{ "name": "next" }],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src", "next-env.d.ts", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}