mirror of
https://github.com/evdboom/Bindery.git
synced 2026-07-22 06:49:36 +00:00
- Upgraded TypeScript from 5.3.0 to 6.0.2 in both mcp-ts and vscode-ext projects. - Added new settings for AI targets and skills in the workspace configuration. - Implemented logic to pre-select previously saved AI targets and skills during setup. - Enhanced the health check and setup functions to persist chosen AI targets and skills. - Updated JSON schema definitions for better clarity and structure in settings. - Improved code formatting and consistency across various files.
18 lines
421 B
JSON
18 lines
421 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2022",
|
|
"outDir": "out",
|
|
"lib": ["ES2022"],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules", ".vscode-test"]
|
|
}
|