update tsconfig

This commit is contained in:
Aman Varshney
2025-02-11 14:20:28 +05:30
parent 96f65a2a3f
commit 113b06ed1a
2 changed files with 4 additions and 4 deletions

View File

@@ -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();

View File

@@ -2,7 +2,7 @@
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"moduleResolution": "bundler",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,