forked from off-grid-ai/OGAM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 1.34 KB
/
Copy pathtsconfig.json
File metadata and controls
33 lines (33 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"extends": "@react-native/typescript-config",
"compilerOptions": {
"types": ["jest", "node"],
"paths": {
"@offgrid/core/*": ["./src/*"],
"@offgrid/pro/*": ["./pro/*"],
"react-native-fs": ["./src/shims/react-native-fs.ts"]
},
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": [
"**/node_modules", "**/Pods", "pro/**",
// Tests that import the private pro/ submodule, which the public repo's CI does
// not check out — so tsc cannot resolve their imports there. Keep in lockstep
// with jest.config.js testPathIgnorePatterns; both lists exclude the same set.
"__tests__/unit/audio/**",
"__tests__/integration/audio/**",
"__tests__/unit/engine/**",
"__tests__/unit/audioProgressCaption.test.ts",
"__tests__/unit/mcp/McpToolExtension.test.ts",
"__tests__/unit/services/ttsService.test.ts",
"__tests__/unit/stores/ttsStore.test.ts",
"__tests__/integration/stores/tts.test.ts",
"__tests__/rntl/components/ChatInputModeToggle.test.tsx",
"__tests__/rntl/components/PlaybackControls.test.tsx",
"__tests__/rntl/components/VoiceModelsPanel.test.tsx",
"__tests__/rntl/components/KokoroTTSBridge.test.tsx",
"__tests__/rntl/components/McpAddServerSheet.test.tsx",
"__tests__/rntl/components/McpServersScreen.test.tsx",
"__tests__/unit/tools/mcpPresets.test.ts"
]
}