diff --git a/apps/dashboard/tsconfig.json b/apps/dashboard/tsconfig.json index 536100774..f0b236f75 100644 --- a/apps/dashboard/tsconfig.json +++ b/apps/dashboard/tsconfig.json @@ -12,7 +12,6 @@ "esModuleInterop": true, "module": "esnext", "moduleResolution": "bundler", - "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "jsx": "react-jsx", diff --git a/packages/local-config-updater/src/index.ts b/packages/local-config-updater/src/index.ts index 021dc6da2..6a1949e14 100644 --- a/packages/local-config-updater/src/index.ts +++ b/packages/local-config-updater/src/index.ts @@ -7,7 +7,7 @@ import { createHash } from "crypto"; import { existsSync, mkdirSync, readFileSync, renameSync, rmSync, writeFileSync } from "fs"; import { createJiti } from "jiti"; import path from "path"; -import { getToolWriteTargetPath, isPathInsideDir, runHeadlessClaudeAgent } from "./config-agent.ts"; +import { getToolWriteTargetPath, isPathInsideDir, runHeadlessClaudeAgent } from "@hexclave/local-config-updater/config-agent"; const jiti = createJiti(import.meta.url, { moduleCache: false }); diff --git a/packages/local-config-updater/tsconfig.json b/packages/local-config-updater/tsconfig.json index 285331ca4..6f8e344ec 100644 --- a/packages/local-config-updater/tsconfig.json +++ b/packages/local-config-updater/tsconfig.json @@ -7,7 +7,6 @@ "lib": ["ES2021", "ES2022.Error", "DOM"], "module": "ES2020", "moduleResolution": "Bundler", - "allowImportingTsExtensions": true, "resolveJsonModule": true, "esModuleInterop": true, "noErrorTruncation": true, diff --git a/packages/stack-cli/tsconfig.json b/packages/stack-cli/tsconfig.json index 980ecc3c6..bfc4edf99 100644 --- a/packages/stack-cli/tsconfig.json +++ b/packages/stack-cli/tsconfig.json @@ -7,7 +7,6 @@ "lib": ["ES2021", "ES2022.Error"], "module": "ES2020", "moduleResolution": "Bundler", - "allowImportingTsExtensions": true, "resolveJsonModule": true, "esModuleInterop": true, "noErrorTruncation": true,