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 a500de0 commit b2e6435Copy full SHA for b2e6435
.gitignore
@@ -72,3 +72,4 @@ assets/img/.DS_Store
72
# .vscode
73
74
dist/
75
+.zed/
src/index.ts
@@ -109,7 +109,7 @@ if (!options.skipGitInit) {
109
try {
110
await $`git init`;
111
await $`git add .`;
112
- await $`git commit -m "${'feat: initial commit'}"`;
+ await $`git commit -m ${'feat: initial commit'}`;
113
spinner.succeed();
114
} catch (error) {
115
debug('Failed to initialize git repository', error);
tsconfig.json
@@ -10,6 +10,7 @@
10
11
"strict": true,
12
"noUncheckedIndexedAccess": true,
13
+ "exactOptionalPropertyTypes": true,
14
15
"moduleResolution": "NodeNext",
16
"module": "NodeNext",
0 commit comments