forked from toolsdk-ai/toolsdk-mcp-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (19 loc) · 690 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"target": "es2017", // Output JavaScript version
"module": "esnext", // Module system
"declaration": true,
"outDir": "./dist", // Output directory
"rootDir": "./src", // Source file directory
"resolveJsonModule": true,
"moduleResolution": "bundler",
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Allow default imports from non-ES modules
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true // Enforce consistent casing in file names
},
"include": ["src/**/*.ts"],
"exclude": [
"node_modules" // Excluded files
]
}