trustgraph/ts/packages/flow/tsconfig.json

16 lines
323 B
JSON
Raw Normal View History

2026-04-05 21:09:33 -05:00
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
2026-04-05 22:44:45 -05:00
"rootDir": "src",
2026-05-12 08:06:58 -05:00
"types": ["node", "bun"],
2026-04-05 22:44:45 -05:00
"composite": true
2026-04-05 21:09:33 -05:00
},
"include": ["src"],
"exclude": ["src/**/*.test.ts", "src/**/*.spec.ts"],
2026-04-05 21:09:33 -05:00
"references": [
{ "path": "../base" },
{ "path": "../client" }
2026-04-05 21:09:33 -05:00
]
}