18 lines
421 B
JSON
18 lines
421 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"composite": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node", "bun-types"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"],
|
|
"references": [
|
|
{ "path": "../core/types" },
|
|
{ "path": "../data/cache" },
|
|
{ "path": "../core/config" },
|
|
{ "path": "../core/logger" }
|
|
]
|
|
}
|