Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .changeset/tsbuildinfo-outside-published-dist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
---

Internal only — no package release.

Every composite project now pins `tsBuildInfoFile` to its own package root, so the
incremental build record is never derived into `dist`. Nothing under any package's
`files` list changes, and no published source or publish-contract field moves:
the diff is 30 `tsconfig.json` files, two `clean` scripts and one pin test
(objectui#9189).
7 changes: 7 additions & 0 deletions packages/app-shell/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
"types": ["node", "vite/client"],
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,

// See `packages/react/tsconfig.json` for the full argument: under
Expand Down
7 changes: 7 additions & 0 deletions packages/auth/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@
"moduleResolution": "nodenext",
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/collaboration/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@
"moduleResolution": "nodenext",
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/components/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
// Removed rootDir to prevent file not under rootDir errors when importing from ..
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"skipLibCheck": true
},
Expand Down
7 changes: 7 additions & 0 deletions packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
"rootDir": "src",
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true
},
"include": ["src"],
Expand Down
2 changes: 1 addition & 1 deletion packages/data-objectstack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"type-check": "tsc --noEmit",
"test": "vitest run --root ../.. packages/data-objectstack/",
"lint": "eslint ."
Expand Down
7 changes: 7 additions & 0 deletions packages/data-objectstack/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declaration": true,
"noEmit": false,
Expand Down
7 changes: 7 additions & 0 deletions packages/i18n/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
"rootDir": "src",
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"jsx": "react-jsx",
"lib": ["ES2020", "DOM"]
Expand Down
7 changes: 7 additions & 0 deletions packages/mobile/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@
"moduleResolution": "nodenext",
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/permissions/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@
"moduleResolution": "nodenext",
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-calendar/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
},
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-charts/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
"noImplicitAny": true,
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"skipLibCheck": true
},
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-chatbot/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
},
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-dashboard/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
// Removed explicit rootDir to prevent file not under rootDir errors when importing from workspace dependencies
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-designer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
],
"scripts": {
"build": "vite build",
"clean": "rm -rf dist",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"test": "vitest run --root ../.. packages/plugin-designer/",
"type-check": "tsc --noEmit && tsc -p tsconfig.test.json",
"lint": "eslint ."
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-designer/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
},
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-detail/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
},
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-editor/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
"noImplicitAny": true,
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"skipLibCheck": true
},
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-form/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
},
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-gantt/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
},
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-grid/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
},
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-kanban/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
// Removed rootDir to prevent file not under rootDir errors when importing from workspace dependencies
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-list/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
},
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-map/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
},
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-markdown/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
// Removed rootDir to prevent file not under rootDir errors when importing from workspace dependencies
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-timeline/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
},
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/plugin-tree/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
},
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true,
"declarationMap": true,
"skipLibCheck": true
Expand Down
7 changes: 7 additions & 0 deletions packages/providers/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@
"moduleResolution": "nodenext",
"noEmit": false,
"declaration": true,
// The incremental build RECORD, pinned OUTSIDE the published build output.
// Left unpinned, TypeScript derives it from `outDir`/`rootDir`: a package with
// no `rootDir` gets `dist/tsconfig.tsbuildinfo` -- inside what `files: ["dist",
// ...]` publishes -- and `pnpm check:published-dist` then reds on a byte-identical
// tree as soon as anything runs `tsc` (objectui#9189). Pinned in every composite
// package so the location is a decision, not a side effect of an unrelated option.
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"composite": true
},
"include": ["src"],
Expand Down
Loading
Loading