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