14 lines
398 B
JSON
14 lines
398 B
JSON
{
|
|
"extends": "../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"types": ["node", "bun-types"]
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules", "dist", "test"],
|
|
"references": [{ "path": "../config" }, { "path": "../logger" }, { "path": "../queue" }]
|
|
}
|