85f5b37c68
## Summary Upgrade the monorepo to TypeScript 7.0.2 and update package build tooling for compatibility with the native compiler. ## Design Package builds now use `tshy` 4, while the packages still using `tsup` move to `tsdown`. The few scripts that depend on the legacy TypeScript compiler API use an explicit TypeScript 6 alias; declaration portability coverage invokes the TypeScript 7 CLI directly. Turbo is updated so workspace tasks can read the regenerated pnpm lockfile. --------- Co-authored-by: devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com>
27 lines
618 B
JSON
27 lines
618 B
JSON
{
|
|
"name": "@internal/observability-map",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"main": "./dist/src/index.js",
|
|
"types": "./dist/src/index.d.ts",
|
|
"dependencies": {
|
|
"@typescript/typescript6": "6.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.13.3",
|
|
"rimraf": "6.0.1",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "catalog:",
|
|
"vitest": "4.1.7"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "pnpm run clean && tsc -p tsconfig.build.json",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"map": "tsx src/cli.ts"
|
|
}
|
|
}
|