We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 285fbb1 commit 2cb35ebCopy full SHA for 2cb35eb
packages/cli/commands/add/workspace.ts
@@ -24,7 +24,7 @@ export async function createWorkspace({
24
25
// Will go up and prioritize jsconfig.json as it's first in the array
26
const tsConfigPath = find.any([commonFilePaths.jsConfig, commonFilePaths.tsConfig], { cwd });
27
- const typescript = tsConfigPath?.endsWith(commonFilePaths.tsConfig)?? false;
+ const typescript = tsConfigPath?.endsWith(commonFilePaths.tsConfig) ?? false;
28
29
// This is not linked with typescript detection
30
const viteConfigPath = path.join(resolvedCwd, commonFilePaths.viteConfigTS);
0 commit comments