-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
50 lines (50 loc) · 1.64 KB
/
tsconfig.base.json
File metadata and controls
50 lines (50 loc) · 1.64 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compileOnSave": false,
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"resolveJsonModule": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"composite": true,
"incremental": true,
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@mcp-apps-kit/core": ["packages/core/src/index.ts"],
"@mcp-apps-kit/ui": ["packages/ui/src/index.ts"],
"@mcp-apps-kit/ui-react": ["packages/ui-react/src/index.ts"],
"@mcp-apps-kit/ui-react-builder": ["packages/ui-react-builder/src/index.ts"],
"@mcp-apps-kit/create-app": ["packages/create-app/src/index.ts"]
}
},
"exclude": ["node_modules", "dist", "coverage", "**/*.test.ts", "**/*.spec.ts"]
}