-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 1.08 KB
/
tsconfig.json
File metadata and controls
36 lines (36 loc) · 1.08 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"isolatedModules": true,
"lib": ["esnext", "dom"],
"moduleResolution": "Bundler",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowJs": true,
"baseUrl": ".",
"rootDir": "./",
"rootDirs": ["./packages"],
"types": ["node"],
"jsx": "react-jsx",
"paths": {
"mcp-funnel": ["./packages/mcp/src/index.ts"],
"@mcp-funnel/core": ["./packages/core/src/index.ts"],
"@mcp-funnel/auth": ["./packages/auth/src/index.ts"],
"@mcp-funnel/models": ["./packages/models/src/index.ts"],
"@mcp-funnel/schemas": ["./packages/schemas/src/index.ts"],
"@mcp-funnel/commands-core": ["./packages/commands/core/src/index.ts"],
"@mcp-funnel/command-ts-validate": ["./packages/commands/ts-validate/src/index.ts"]
}
},
"include": ["./src/**/*.ts", "./test/**/*.ts", "./packages/**/*"],
"exclude": [
"**/node_modules/**/*",
"**/dist/**/*",
"docs/**/*",
"**/*.md",
"**/test/fixtures/**/*"
]
}