From c4abcfbd65ef6be7a9555f2c87048f18674a752d Mon Sep 17 00:00:00 2001 From: Lou Cyx Date: Wed, 12 Aug 2026 17:48:21 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A9=20(env)=20Enable=20TypeScript=20Go?= =?UTF-8?q?=20support=20in=20Deno.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish.yml | 5 ++++- .zed/settings.json | 20 +++++++++++++++++++- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8dfcf8c..0a1e76e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,10 +5,13 @@ on: branches: - "**" +env: + DENO_UNSTABLE_TSGO: 1 + jobs: test: name: Run Tests - runs-on: ubuntu-slim + runs-on: ubuntu-latest permissions: contents: read id-token: write diff --git a/.zed/settings.json b/.zed/settings.json index 0ecd841..36d21f3 100644 --- a/.zed/settings.json +++ b/.zed/settings.json @@ -27,5 +27,23 @@ ] } }, - "lsp": { "deno": { "settings": { "deno": { "enable": true } } } } + "lsp": { + "deno": { "settings": { "deno": { "enable": true } } }, + "json-language-server": { + "settings": { + "json": { + "schemas": [ + { + "fileMatch": ["deno.json", "deno.jsonc"], + "url": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json" + }, + { + "fileMatch": ["package.json"], + "url": "https://www.schemastore.org/package" + } + ] + } + } + } + } }