From 3fd009c2ccdf8cc91cb70623f673a07c9531b6e0 Mon Sep 17 00:00:00 2001 From: ernest-nowacki Date: Tue, 3 Mar 2026 15:38:35 +0100 Subject: [PATCH] Update built-in template --- .../builtin/hello-world-ts/workflow/package.json | 7 ++++--- .../builtin/hello-world-ts/workflow/tsconfig.json | 7 +++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/internal/templaterepo/builtin/hello-world-ts/workflow/package.json b/internal/templaterepo/builtin/hello-world-ts/workflow/package.json index 0dc43de0..633b08a9 100644 --- a/internal/templaterepo/builtin/hello-world-ts/workflow/package.json +++ b/internal/templaterepo/builtin/hello-world-ts/workflow/package.json @@ -4,13 +4,14 @@ "main": "dist/main.js", "private": true, "scripts": { - "postinstall": "bun x cre-setup" + "postinstall": "bun x cre-setup", + "typecheck": "tsc --noEmit" }, "license": "UNLICENSED", "dependencies": { - "@chainlink/cre-sdk": "^1.1.1" + "@chainlink/cre-sdk": "1.1.3-alpha.2" }, "devDependencies": { - "@types/bun": "1.2.21" + "typescript": "5.9.3" } } diff --git a/internal/templaterepo/builtin/hello-world-ts/workflow/tsconfig.json b/internal/templaterepo/builtin/hello-world-ts/workflow/tsconfig.json index 840fdc79..d142bddd 100644 --- a/internal/templaterepo/builtin/hello-world-ts/workflow/tsconfig.json +++ b/internal/templaterepo/builtin/hello-world-ts/workflow/tsconfig.json @@ -8,9 +8,8 @@ "strict": true, "esModuleInterop": true, "skipLibCheck": true, - "forceConsistentCasingInFileNames": true + "forceConsistentCasingInFileNames": true, + "types": [] }, - "include": [ - "main.ts" - ] + "include": ["main.ts"] }