Skip to content

Commit

Permalink
chore(cli): delete all types of tsconfig for JS projects
Browse files Browse the repository at this point in the history
  • Loading branch information
trobonox committed Jul 20, 2024
1 parent 0bcb89b commit 0106d45
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/cli/src/modules/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ const setupWizard = async (templateLink: string) => {
else {
// delete tsconfig.json inside the projectDir using the node fs module
await fs.unlink(path.join(projectDir, 'tsconfig.json'));
await fs.unlink(path.join(projectDir, 'tsconfig.app.json'));
await fs.unlink(path.join(projectDir, 'tsconfig.node.json'));
await fs.unlink(path.join(projectDir, 'stein.config.ts'));
}

Expand Down

0 comments on commit 0106d45

Please sign in to comment.