forked from anton-abyzov/specweave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (46 loc) · 1.29 KB
/
Copy pathtsconfig.json
File metadata and controls
46 lines (46 loc) · 1.29 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"lib": ["ES2020", "DOM"],
"types": ["node"],
"outDir": "./dist",
"strict": true,
"strictNullChecks": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"allowImportingTsExtensions": false
},
"include": [
"src/**/*",
"plugins/**/lib/**/*.ts",
"global.d.ts"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts",
"**/*.spec.ts",
"plugins/**/lib/*-hierarchical-sync.ts",
"plugins/**/lib/*-multi-project-sync.ts",
"plugins/**/lib/*-project-detector.ts",
"plugins/**/lib/*-selector.ts",
"plugins/**/lib/*-board-resolver.ts",
"plugins/**/lib/*-profile-resolver.ts",
"plugins/**/lib/conflict-resolver.ts",
"plugins/specweave-kafka/**/*.ts",
"plugins/**/lib/hooks/**/*.ts",
"src/core/llm/providers/openai-provider.ts",
"src/core/llm/providers/azure-openai-provider.ts",
"src/core/llm/providers/bedrock-provider.ts",
"src/core/llm/providers/vertex-ai-provider.ts",
"src/dashboard/client/**",
"src/core/fabric/contradiction-detector.ts"
]
}