Skip to content

Commit d21f2ca

Browse files
committed
dumb fix found
1 parent 7430804 commit d21f2ca

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

packages/@apphosting/build/e2e/run-local-build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import promiseSpawn from "@npmcli/promise-spawn";
33
import { dirname, join, relative } from "path";
44
import { fileURLToPath } from "url";
55
import fsExtra from "fs-extra";
6-
import { scenarios } from "./scenarios.ts";
6+
import { scenarios } from "./scenarios.js";
77

88
const { readFileSync, mkdirp, rmdir } = fsExtra;
99

packages/@apphosting/build/tsconfig.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"extends": "../../../tsconfig.json",
33
"compilerOptions": {
4+
"noEmit": false,
45
"outDir": "dist",
5-
"rootDir": "src",
6-
"allowImportingTsExtensions": true
6+
"rootDir": "src"
77
},
88
"ts-node": {
99
"esm": true,
@@ -15,6 +15,7 @@
1515
"src/bin/*.ts",
1616
],
1717
"exclude": [
18-
"src/*.spec.ts"
18+
"src/*.spec.ts",
19+
"src/bin/build.ts"
1920
]
2021
}

0 commit comments

Comments
 (0)