evdboom_Bindery/vscode-ext/tsconfig.json
Erik van der Boom 07c618ad4a feat: update TypeScript version and enhance AI setup functionality
- 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.
2026-04-08 22:46:20 +02:00

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"]
}