- Updated pnpm-workspace.yaml to enforce TypeScript version 6.0.2. - Replaced legacy TypeScript import with the current version in comparison tools. - Added ignoreDeprecations setting in tsconfig.base.json to suppress deprecation warnings for baseUrl. - Introduced TypeScript version policy documentation outlining the rationale and upgrade gate for moving to TypeScript 7.
20 lines
509 B
JSON
20 lines
509 B
JSON
{
|
|
"name": "@sammo-ts/tools-scripts",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"generate:resource-schemas": "tsx src/generate-resource-schemas.ts",
|
|
"validate:resources": "tsx src/validate-resources.ts",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@sammo-ts/logic": "workspace:*",
|
|
"zod": "^4.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"tsx": "^4.21.0",
|
|
"typescript": "6.0.2"
|
|
}
|
|
}
|