Skip to content

Commit 2cb35eb

Browse files
committed
lint
1 parent 285fbb1 commit 2cb35eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/commands/add/workspace.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export async function createWorkspace({
2424

2525
// Will go up and prioritize jsconfig.json as it's first in the array
2626
const tsConfigPath = find.any([commonFilePaths.jsConfig, commonFilePaths.tsConfig], { cwd });
27-
const typescript = tsConfigPath?.endsWith(commonFilePaths.tsConfig)?? false;
27+
const typescript = tsConfigPath?.endsWith(commonFilePaths.tsConfig) ?? false;
2828

2929
// This is not linked with typescript detection
3030
const viteConfigPath = path.join(resolvedCwd, commonFilePaths.viteConfigTS);

0 commit comments

Comments
 (0)