From 113b06ed1ae341a7a1371e62507f584ee19ecf8e Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Tue, 11 Feb 2025 14:20:28 +0530 Subject: [PATCH] update tsconfig --- src/index.ts | 6 +++--- tsconfig.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/index.ts b/src/index.ts index b4e7159..bdcef47 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,9 +1,9 @@ import { checkbox, confirm, input, select } from "@inquirer/prompts"; import chalk from "chalk"; import { Command } from "commander"; -import { createProject } from "./create-project.js"; -import { renderTitle } from "./render-title.js"; -import type { ProjectDatabase, ProjectFeature } from "./types.js"; +import { createProject } from "./create-project"; +import { renderTitle } from "./render-title"; +import type { ProjectDatabase, ProjectFeature } from "./types"; const program = new Command(); diff --git a/tsconfig.json b/tsconfig.json index a03e851..a2a67a3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "target": "ES2022", "module": "ESNext", - "moduleResolution": "node", + "moduleResolution": "bundler", "esModuleInterop": true, "strict": true, "skipLibCheck": true,