-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
58 lines (57 loc) · 2.05 KB
/
tsconfig.json
File metadata and controls
58 lines (57 loc) · 2.05 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"compilerOptions": {
// Base compiler options for all packages
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"declaration": true,
"sourceMap": true,
"composite": true,
"incremental": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
// Path aliases
"baseUrl": ".",
"paths": {
"@/*": ["./packages/*/src"],
"@footnote/agent-runtime": [
"./packages/agent-runtime/src/index.ts"
],
"@footnote/agent-runtime/*": ["./packages/agent-runtime/src/*"],
"@footnote/api-client": ["./packages/api-client/src/index.ts"],
"@footnote/api-client/*": ["./packages/api-client/src/*"],
"@footnote/config-spec": ["./packages/config-spec/src/index.ts"],
"@footnote/config-spec/*": ["./packages/config-spec/src/*"],
"@footnote/contracts": ["./packages/contracts/src/index.ts"],
"@footnote/contracts/*": ["./packages/contracts/src/*"],
"@footnote/prompts": ["./packages/prompts/src/index.ts"],
"@footnote/prompts/*": ["./packages/prompts/src/*"],
"@components/*": ["./packages/web/src/components/*"],
"@pages/*": ["./packages/web/src/pages/*"],
"@styles/*": ["./packages/web/src/styles/*"],
"@theme": ["./packages/web/src/theme"],
"@types/*": ["./packages/web/src/types/*"]
}
},
"include": [
"packages/**/*.ts",
"packages/**/*.tsx",
"scripts/**/*.ts",
"mcp/**/*.ts",
"mcp/**/types/*.d.ts"
],
"exclude": [
"node_modules",
"**/node_modules/*",
"**/dist/*",
"packages/web/vite.config.ts"
]
}