mirror of https://github.com/buster-so/buster.git
21 lines
624 B
JSON
21 lines
624 B
JSON
{
|
|
"extends": "@buster/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"tsBuildInfoFile": "dist/.cache/tsbuildinfo.json"
|
|
},
|
|
"include": ["src/**/*", "tests/**/*", "env.d.ts"],
|
|
"exclude": ["node_modules", "dist"],
|
|
"references": [
|
|
{ "path": "../../packages/access-controls" },
|
|
{ "path": "../../packages/ai" },
|
|
{ "path": "../../packages/database" },
|
|
{ "path": "../../packages/server-shared" },
|
|
{ "path": "../../packages/slack" },
|
|
{ "path": "../../packages/test-utils" },
|
|
{ "path": "../../packages/vitest-config" }
|
|
]
|
|
}
|