Skip to content

Commit 1fd2056

Browse files
committed
fix: typescript
1 parent 6eb050d commit 1fd2056

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/solutions/typescript.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,17 @@ export async function setupTypescript() {
7070

7171
if (buildContext === "library") {
7272
writeFileSync(
73-
resolve("./.tsconfig.json"),
73+
resolve("./tsconfig.json"),
7474
JSON.stringify(typeScriptConfigurationLibrary, null, 2),
7575
);
7676
} else if (buildContext === "script") {
7777
writeFileSync(
78-
resolve("./.tsconfig.json"),
78+
resolve("./tsconfig.json"),
7979
JSON.stringify(typeScriptConfigurationScript, null, 2),
8080
);
8181
} else if (buildContext === "server") {
8282
writeFileSync(
83-
resolve("./.tsconfig.json"),
83+
resolve("./tsconfig.json"),
8484
JSON.stringify(typeScriptConfigurationServer, null, 2),
8585
);
8686
}

0 commit comments

Comments
 (0)