Skip to content

chore(ci): upgrade to typescript 7#87

Merged
coryrylan merged 2 commits into
mainfrom
topic-ts7
May 18, 2026
Merged

chore(ci): upgrade to typescript 7#87
coryrylan merged 2 commits into
mainfrom
topic-ts7

Conversation

@coryrylan
Copy link
Copy Markdown
Collaborator

@coryrylan coryrylan commented May 15, 2026

Summary by CodeRabbit

  • New Features

    • Markdown component now awaits in-flight parsing before completing updates.
  • Bug Fixes

    • Test helper simplified to more reliably detect element stability during markdown rendering.
  • Chores

    • Bumped dev tooling and starter dependencies; small package version updates.
    • Added a TypeScript native-preview dependency.
    • Enabled stricter TypeScript import checking across many projects.
    • Streamlined docs/page layout rendering and removed some metadata fields.

Review Change Stack

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 15, 2026

📝 Walkthrough

Walkthrough

Enables TypeScript noUncheckedSideEffectImports across many tsconfigs, adds @typescript/native-preview and updates workspace catalog/tooling, refactors the Vite tsc plugin to exec tsgo, updates the Markdown component to await parsing, and applies several small dependency and template edits.

Changes

Workspace Modernization and Native TypeScript Tooling

Layer / File(s) Summary
Workspace catalog and build-tool versions
pnpm-workspace.yaml
Bumps Vitest entries and core tooling versions; adds @typescript/native-preview to the catalog and adjusts minimumReleaseAgeExclude to skip native-preview platform packages.
Vite tsc plugin integration with native TypeScript
projects/internals/vite/package.json, projects/internals/vite/src/plugins/tsc.js
Adds @typescript/native-preview as a dependency and refactors the tsc plugin to resolve and execute the native tsgo binary (execFileSync with process.execPath) instead of invoking tsc via a shell.

TypeScript Strictness Enforcement and Markdown Lifecycle

Layer / File(s) Summary
TypeScript noUncheckedSideEffectImports rollout
projects/*/tsconfig.json, projects/internals/*/tsconfig.json, projects/monaco/*/tsconfig.json, projects/starters/*/tsconfig.json
Enables noUncheckedSideEffectImports: true across many project tsconfigs to enforce stricter checks for side-effect-only imports.
Markdown component parsing state tracking and lifecycle
projects/markdown/src/markdown/markdown.ts, projects/markdown/src/markdown/markdown.test.ts
Adds #pendingMarkdownParsing, overrides getUpdateComplete() to await parsing completion, routes rendering through #renderMarkdown(), adds #clearRenderedHtml(), and simplifies the test helper to rely on element stability.

Minor Dependency and Configuration Updates

Layer / File(s) Summary
Starter and utility dependency & template updates
projects/pages/index.js, projects/starters/*/package.json, projects/internals/tools/package.json, projects/site/src/_11ty/layouts/*
Bumps several starter tooling/devDependencies, updates sanitize-html, removes an unused writeFileSync import and a license manifest field, and simplifies site 11ty layout markup and main content rendering.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Possibly related PRs

  • NVIDIA/elements#77: Both PRs modify pnpm-workspace.yaml dependency catalogs and minimumReleaseAgeExclude, including Vitest/tooling version bumps.

Suggested reviewers

  • johnyanarella
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Title check ⚠️ Warning The title claims a TypeScript 7 upgrade, but the changes show TypeScript configuration updates and dependency bumps for testing/build tools, not a TypeScript version upgrade. Revise the title to accurately reflect the actual changes, such as 'chore: enable noUncheckedSideEffectImports and update build dependencies' or similar.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch topic-ts7

Comment @coderabbitai help to get the list of available commands and usage tips.

this.#pendingMarkdownParsing = Promise.resolve();
this.renderedHtml = '';
}

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This improves the getUpdateComplete check so tests can reliably use it for render completion instead of a flakey timeout

import { dirname, resolve } from 'node:path';

const require = createRequire(import.meta.url);
const tsgoPath = resolve(dirname(require.resolve('@typescript/native-preview/package.json')), 'bin/tsgo.js');
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some projects (mostly starters) rely on TS6. This allows our libraries/projects to be type checked with TS7 and get the benefits while preserving ts6 until those projects can be upgrades.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
projects/markdown/src/markdown/markdown.ts (1)

134-148: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Prevent stale parse completions from overwriting newer/cleared content.

On Line 135 and Line 145, older in-flight parses are not invalidated. If #renderMarkdown() is called, then #clearRenderedHtml() (or another #renderMarkdown()) runs before the first parse resolves, the old .then() can still set this.renderedHtml with stale HTML.

Suggested fix
 export class Markdown extends LitElement {
+  `#renderRequestId` = 0;
+
   `#renderMarkdown`(markdown: string): void {
+    const requestId = ++this.#renderRequestId;
     this.#pendingMarkdownParsing = this.#parseMarkdown(markdown)
       .then(parsed => {
+        if (requestId !== this.#renderRequestId) return;
         this.renderedHtml = parsed;
       })
       .catch(_error => {
+        if (requestId !== this.#renderRequestId) return;
         // Don't update renderedHtml on parsing error - keep previous content
         console.debug('Markdown parsing failed, keeping previous content');
       });
   }

   `#clearRenderedHtml`(): void {
+    ++this.#renderRequestId;
     this.#pendingMarkdownParsing = Promise.resolve();
     this.renderedHtml = '';
   }
 }
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@projects/markdown/src/markdown/markdown.ts` around lines 134 - 148, Older
in-flight parses started by `#renderMarkdown` can still set this.renderedHtml when
they resolve; add an invalidation token (e.g., a numeric parseId or symbol
stored on the instance) that `#renderMarkdown` captures locally before calling
`#parseMarkdown` and that `#clearRenderedHtml` increments/changes to invalidate
pending results, then in the .then() handler check the captured token against
the current instance token and only assign this.renderedHtml if they match; also
ensure `#clearRenderedHtml` updates `#pendingMarkdownParsing` to a resolved promise
and increments the token so already-resolving promises are ignored.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@projects/internals/vite/src/plugins/tsc.js`:
- Around line 5-6: The plugin currently resolves tsgo eagerly by computing
tsgoPath at module load (using createRequire +
resolve(dirname(require.resolve('@typescript/native-preview/package.json')),
'bin/tsgo.js')), which can fail before the VITE_INITIAL_BUILD guard; instead
move the resolution into the plugin's buildStart hook and resolve the
package.json lazily there: use createRequire(import.meta.url) inside buildStart
(or a lazily-invoked helper),
require.resolve('@typescript/native-preview/package.json') to load the
package.json, read its "bin" mapping to get the actual tsgo entry (e.g.,
pkg.bin.tsgo), and then compute the full path (resolve(dirname(pkgJsonPath),
pkg.bin.tsgo)) and assign to tsgoPath before using it; update any references to
the top-level tsgoPath so they use the lazily-resolved value.

---

Outside diff comments:
In `@projects/markdown/src/markdown/markdown.ts`:
- Around line 134-148: Older in-flight parses started by `#renderMarkdown` can
still set this.renderedHtml when they resolve; add an invalidation token (e.g.,
a numeric parseId or symbol stored on the instance) that `#renderMarkdown`
captures locally before calling `#parseMarkdown` and that `#clearRenderedHtml`
increments/changes to invalidate pending results, then in the .then() handler
check the captured token against the current instance token and only assign
this.renderedHtml if they match; also ensure `#clearRenderedHtml` updates
`#pendingMarkdownParsing` to a resolved promise and increments the token so
already-resolving promises are ignored.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Enterprise

Run ID: bda0207c-1848-4b97-af07-9baa10418353

📥 Commits

Reviewing files that changed from the base of the PR and between e8e3187 and 9a30715.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (30)
  • pnpm-workspace.yaml
  • projects/cli/tsconfig.json
  • projects/code/tsconfig.json
  • projects/core/tsconfig.json
  • projects/create/tsconfig.json
  • projects/forms/tsconfig.json
  • projects/internals/metadata/tsconfig.json
  • projects/internals/patterns/tsconfig.json
  • projects/internals/testing/tsconfig.json
  • projects/internals/tools/tsconfig.json
  • projects/internals/vite/package.json
  • projects/internals/vite/src/plugins/tsc.js
  • projects/lint/tsconfig.json
  • projects/markdown/src/markdown/markdown.test.ts
  • projects/markdown/src/markdown/markdown.ts
  • projects/markdown/tsconfig.json
  • projects/media/tsconfig.json
  • projects/monaco/build/tsconfig.json
  • projects/monaco/tsconfig.json
  • projects/pages/index.js
  • projects/site/tsconfig.json
  • projects/starters/lit-library/tsconfig.json
  • projects/starters/mpa/tsconfig.json
  • projects/starters/solidjs/package.json
  • projects/starters/svelte/package.json
  • projects/starters/typescript/tsconfig.json
  • projects/starters/vue/package.json
  • projects/styles/tsconfig.json
  • projects/themes/package.json
  • projects/themes/tsconfig.json
💤 Files with no reviewable changes (2)
  • projects/markdown/src/markdown/markdown.test.ts
  • projects/starters/solidjs/package.json

Comment thread projects/internals/vite/src/plugins/tsc.js
Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
projects/markdown/src/markdown/markdown.ts (1)

134-147: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Prevent stale async parse results from overwriting newer content.

Line 135 stores a new pending promise, but prior in-flight parses can still resolve later and write renderedHtml, including after Line 146 clears output. This can resurrect stale markdown.

💡 Suggested fix (version guard)
 export class Markdown extends LitElement {
+  `#renderVersion` = 0;
   `#pendingMarkdownParsing`: Promise<void> = Promise.resolve();
@@
   `#renderMarkdown`(markdown: string): void {
-    this.#pendingMarkdownParsing = this.#parseMarkdown(markdown)
+    const renderVersion = ++this.#renderVersion;
+    this.#pendingMarkdownParsing = this.#parseMarkdown(markdown)
       .then(parsed => {
-        this.renderedHtml = parsed;
+        if (renderVersion !== this.#renderVersion) return;
+        this.renderedHtml = parsed;
       })
       .catch(_error => {
+        if (renderVersion !== this.#renderVersion) return;
         // Don't update renderedHtml on parsing error - keep previous content
         console.debug('Markdown parsing failed, keeping previous content');
       });
   }
@@
   `#clearRenderedHtml`(): void {
+    this.#renderVersion++;
     this.#pendingMarkdownParsing = Promise.resolve();
     this.renderedHtml = '';
   }
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@projects/markdown/src/markdown/markdown.ts` around lines 134 - 147, The async
parse in `#renderMarkdown` can be overwritten by earlier in-flight parses; add a
version guard using a monotonic counter or token (e.g.,
this.#markdownParseCounter) captured into a local parseId before calling
this.#parseMarkdown, then when the promise resolves or rejects compare the
captured parseId to the current counter and only write to renderedHtml if they
match; also increment or invalidate the counter in `#clearRenderedHtml` so
clearing prevents any earlier resolves from resurrecting stale content. Ensure
references: `#renderMarkdown`, this.#pendingMarkdownParsing, this.#parseMarkdown,
renderedHtml, and `#clearRenderedHtml`.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Outside diff comments:
In `@projects/markdown/src/markdown/markdown.ts`:
- Around line 134-147: The async parse in `#renderMarkdown` can be overwritten by
earlier in-flight parses; add a version guard using a monotonic counter or token
(e.g., this.#markdownParseCounter) captured into a local parseId before calling
this.#parseMarkdown, then when the promise resolves or rejects compare the
captured parseId to the current counter and only write to renderedHtml if they
match; also increment or invalidate the counter in `#clearRenderedHtml` so
clearing prevents any earlier resolves from resurrecting stale content. Ensure
references: `#renderMarkdown`, this.#pendingMarkdownParsing, this.#parseMarkdown,
renderedHtml, and `#clearRenderedHtml`.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Enterprise

Run ID: 165cc2ce-ae57-413d-a781-bc6657e4eaf8

📥 Commits

Reviewing files that changed from the base of the PR and between 9a30715 and 864476a.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (30)
  • pnpm-workspace.yaml
  • projects/cli/tsconfig.json
  • projects/code/tsconfig.json
  • projects/core/tsconfig.json
  • projects/create/tsconfig.json
  • projects/forms/tsconfig.json
  • projects/internals/metadata/tsconfig.json
  • projects/internals/patterns/tsconfig.json
  • projects/internals/testing/tsconfig.json
  • projects/internals/tools/tsconfig.json
  • projects/internals/vite/package.json
  • projects/internals/vite/src/plugins/tsc.js
  • projects/lint/tsconfig.json
  • projects/markdown/src/markdown/markdown.test.ts
  • projects/markdown/src/markdown/markdown.ts
  • projects/markdown/tsconfig.json
  • projects/media/tsconfig.json
  • projects/monaco/build/tsconfig.json
  • projects/monaco/tsconfig.json
  • projects/pages/index.js
  • projects/site/tsconfig.json
  • projects/starters/lit-library/tsconfig.json
  • projects/starters/mpa/tsconfig.json
  • projects/starters/solidjs/package.json
  • projects/starters/svelte/package.json
  • projects/starters/typescript/tsconfig.json
  • projects/starters/vue/package.json
  • projects/styles/tsconfig.json
  • projects/themes/package.json
  • projects/themes/tsconfig.json
💤 Files with no reviewable changes (2)
  • projects/starters/solidjs/package.json
  • projects/markdown/src/markdown/markdown.test.ts

@@ -1,5 +1,6 @@
{
"compilerOptions": {
"noUncheckedSideEffectImports": true,
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

noUncheckedSideEffectImports forces the compiler to verify that side-effect-only imports (import "./style.css") point to an actual existing file

coryrylan added 2 commits May 18, 2026 11:34
Signed-off-by: Cory Rylan <crylan@nvidia.com>
Signed-off-by: Cory Rylan <crylan@nvidia.com>
Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
projects/markdown/src/markdown/markdown.ts (1)

134-148: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Prevent stale parse completions from overwriting newer/cleared content.

#clearRenderedHtml() (Line 145) clears state but does not invalidate an already in-flight parse started by #renderMarkdown(). That older promise can still resolve later and set renderedHtml to stale HTML after content was cleared or replaced.

Suggested fix
 export class Markdown extends LitElement {
+  `#renderVersion` = 0;
+
   `#renderMarkdown`(markdown: string): void {
-    this.#pendingMarkdownParsing = this.#parseMarkdown(markdown)
+    const renderVersion = ++this.#renderVersion;
+    this.#pendingMarkdownParsing = this.#parseMarkdown(markdown)
       .then(parsed => {
+        if (renderVersion !== this.#renderVersion) return;
         this.renderedHtml = parsed;
       })
       .catch(_error => {
         // Don't update renderedHtml on parsing error - keep previous content
         console.debug('Markdown parsing failed, keeping previous content');
       });
   }

   `#clearRenderedHtml`(): void {
+    this.#renderVersion++;
     this.#pendingMarkdownParsing = Promise.resolve();
     this.renderedHtml = '';
   }
 }
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@projects/markdown/src/markdown/markdown.ts` around lines 134 - 148, The
in-flight promise from `#renderMarkdown` can resolve after `#clearRenderedHtml` and
overwrite renderedHtml; fix by introducing a generation/check token and
validating it before applying a parsed result: when `#renderMarkdown` calls
this.#parseMarkdown(markdown) capture a local generation id (increment a private
counter on the instance) and only set this.renderedHtml if the captured id ===
current instance generation; update `#clearRenderedHtml` to increment the
generation (invalidating any pending parses) and then clear renderedHtml and set
`#pendingMarkdownParsing` to Promise.resolve(); reference symbols:
`#renderMarkdown`, `#clearRenderedHtml`, `#pendingMarkdownParsing`, `#parseMarkdown`,
renderedHtml.
♻️ Duplicate comments (1)
projects/internals/vite/src/plugins/tsc.js (1)

5-6: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Resolve tsgo lazily from package metadata instead of hardcoding at import time.

Line 6 resolves bin/tsgo.js eagerly during module import. If package layout/bin mapping changes, this can fail before Line 16’s runtime guard and break unrelated commands.

Proposed fix
 const require = createRequire(import.meta.url);
-const tsgoPath = resolve(dirname(require.resolve('`@typescript/native-preview/package.json`')), 'bin/tsgo.js');
+function resolveTsgoPath() {
+  const packageJsonPath = require.resolve('`@typescript/native-preview/package.json`');
+  const packageJson = require(packageJsonPath);
+  const tsgoBin = typeof packageJson.bin === 'string' ? packageJson.bin : packageJson.bin?.tsgo;
+  if (!tsgoBin) {
+    throw new Error('Unable to resolve tsgo binary from `@typescript/native-preview` package metadata.');
+  }
+  return resolve(dirname(packageJsonPath), tsgoBin);
+}
@@
     async buildStart() {
       if (process.env.VITE_INITIAL_BUILD) {
+        const tsgoPath = resolveTsgoPath();
         execFileSync(
           process.execPath,
           [
             tsgoPath,
For `@typescript/native-preview` version 7.0.0-dev.20260518.1, what is the package.json "bin" mapping for "tsgo", and is directly using "bin/tsgo.js" documented as stable?
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@projects/internals/vite/src/plugins/tsc.js` around lines 5 - 6, The module
currently resolves tsgoPath eagerly at import time using
createRequire(import.meta.url) and require.resolve to point to 'bin/tsgo.js'
(tsgoPath), which can throw before runtime guards run; change this to resolve
the package metadata lazily at the point of use (e.g., inside the function or
guarded block that needs tsgo) by calling
createRequire(import.meta.url).resolve(...) or reading package.json only when
you actually need tsgo, and fall back or handle errors if the "bin" mapping
differs; update references to the tsgoPath constant so resolution happens inside
the runtime guard rather than at module top-level.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@projects/starters/svelte/package.json`:
- Line 21: The package.json lists invalid versions for Svelte tooling — update
the dependency entries for "`@sveltejs/vite-plugin-svelte`", "svelte", and
"svelte-check" to valid releases from the npm registry (e.g., replace the
non-existent "7.1.2", "5.55.7", "4.4.8" values with confirmed published versions
or caret ranges), verify by running npm/yarn install to ensure resolution, and
commit the corrected version strings so installation succeeds.

In `@projects/themes/package.json`:
- Line 50: The package.json lists an invalid cssnano version "7.1.7"; change the
cssnano dependency to a valid release (e.g., "7.1.4") in package.json, then
reinstall and regenerate lockfiles (npm install or yarn install) so
package-lock.json / yarn.lock is updated; update any build/test that asserts
dependency versions if present. Reference: dependency key "cssnano" in
package.json.

---

Outside diff comments:
In `@projects/markdown/src/markdown/markdown.ts`:
- Around line 134-148: The in-flight promise from `#renderMarkdown` can resolve
after `#clearRenderedHtml` and overwrite renderedHtml; fix by introducing a
generation/check token and validating it before applying a parsed result: when
`#renderMarkdown` calls this.#parseMarkdown(markdown) capture a local generation
id (increment a private counter on the instance) and only set this.renderedHtml
if the captured id === current instance generation; update `#clearRenderedHtml` to
increment the generation (invalidating any pending parses) and then clear
renderedHtml and set `#pendingMarkdownParsing` to Promise.resolve(); reference
symbols: `#renderMarkdown`, `#clearRenderedHtml`, `#pendingMarkdownParsing`,
`#parseMarkdown`, renderedHtml.

---

Duplicate comments:
In `@projects/internals/vite/src/plugins/tsc.js`:
- Around line 5-6: The module currently resolves tsgoPath eagerly at import time
using createRequire(import.meta.url) and require.resolve to point to
'bin/tsgo.js' (tsgoPath), which can throw before runtime guards run; change this
to resolve the package metadata lazily at the point of use (e.g., inside the
function or guarded block that needs tsgo) by calling
createRequire(import.meta.url).resolve(...) or reading package.json only when
you actually need tsgo, and fall back or handle errors if the "bin" mapping
differs; update references to the tsgoPath constant so resolution happens inside
the runtime guard rather than at module top-level.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Enterprise

Run ID: e7cc3b93-89a7-4290-bcea-6e9dc7b128e7

📥 Commits

Reviewing files that changed from the base of the PR and between 864476a and 7efe542.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (34)
  • pnpm-workspace.yaml
  • projects/cli/tsconfig.json
  • projects/code/tsconfig.json
  • projects/core/tsconfig.json
  • projects/create/tsconfig.json
  • projects/forms/tsconfig.json
  • projects/internals/metadata/tsconfig.json
  • projects/internals/patterns/tsconfig.json
  • projects/internals/testing/tsconfig.json
  • projects/internals/tools/package.json
  • projects/internals/tools/tsconfig.json
  • projects/internals/vite/package.json
  • projects/internals/vite/src/plugins/tsc.js
  • projects/lint/tsconfig.json
  • projects/markdown/src/markdown/markdown.test.ts
  • projects/markdown/src/markdown/markdown.ts
  • projects/markdown/tsconfig.json
  • projects/media/tsconfig.json
  • projects/monaco/build/tsconfig.json
  • projects/monaco/tsconfig.json
  • projects/pages/index.js
  • projects/site/src/_11ty/layouts/docs.11ty.js
  • projects/site/src/_11ty/layouts/page.11ty.js
  • projects/site/tsconfig.json
  • projects/starters/lit-library/tsconfig.json
  • projects/starters/mpa/tsconfig.json
  • projects/starters/nextjs/package.json
  • projects/starters/solidjs/package.json
  • projects/starters/svelte/package.json
  • projects/starters/typescript/tsconfig.json
  • projects/starters/vue/package.json
  • projects/styles/tsconfig.json
  • projects/themes/package.json
  • projects/themes/tsconfig.json
💤 Files with no reviewable changes (4)
  • projects/markdown/src/markdown/markdown.test.ts
  • projects/starters/solidjs/package.json
  • projects/site/src/_11ty/layouts/page.11ty.js
  • projects/site/src/_11ty/layouts/docs.11ty.js

Comment thread projects/starters/svelte/package.json
Comment thread projects/themes/package.json
@coryrylan coryrylan merged commit d9c9705 into main May 18, 2026
8 checks passed
@coryrylan coryrylan deleted the topic-ts7 branch May 18, 2026 17:28
@coryrylan
Copy link
Copy Markdown
Collaborator Author

🎉 This issue has been resolved in version 0.0.11 🎉

Changelog

@coryrylan
Copy link
Copy Markdown
Collaborator Author

🎉 This issue has been resolved in version 0.1.2 🎉

Changelog

@coryrylan
Copy link
Copy Markdown
Collaborator Author

🎉 This issue has been resolved in version 0.2.0 🎉

Changelog

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants