brainy/tsconfig.browser.json

34 lines
766 B
JSON
Raw Normal View History

2025-06-24 11:41:30 -07:00
{
"extends": "./tsconfig.json",
2025-06-24 11:41:30 -07:00
"compilerOptions": {
"outDir": "./dist/browser-build"
2025-06-24 11:41:30 -07:00
},
"include": [
"src/brainyData.ts",
"src/browserFramework.ts",
"src/universal/**/*",
"src/types/graphTypes.ts",
"src/coreTypes.ts",
"src/utils/embedding.ts",
"src/utils/environment.ts",
"src/utils/logger.ts",
"src/utils/index.ts",
"src/hnsw/**/*",
"src/storage/**/*",
"src/setup.ts"
2025-06-24 11:41:30 -07:00
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts",
"src/cortex/**/*",
"src/augmentations/**/*",
"src/pipeline.ts",
"src/sequentialPipeline.ts",
"src/augmentationFactory.ts",
"src/augmentationRegistry.ts",
"src/augmentationRegistryLoader.ts",
"src/chat/**/*",
"src/mcp/**/*"
2025-06-24 11:41:30 -07:00
]
}