This commit is contained in:
Sebastian "Sebbie" Silbermann 2025-10-01 15:43:41 +02:00 committed by GitHub
commit 5a294d5490
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import * as Stub from "./stub";
it("should compile", function () {
if (typeof Stub.NotHere !== "undefined") {
throw new Error("This shouldn't be here!");
}
if (typeof Stub.Here === "undefined") {
throw new Error("This should be here!");
}
});

View File

@ -0,0 +1 @@
export const Here = "exists";

View File

@ -0,0 +1,6 @@
/** @type {import("../../../../").Configuration} */
module.exports = {
module: {
strictExportPresence: true
}
};

View File

@ -0,0 +1,10 @@
import * as Stub from "./stub";
it("should compile", function () {
if (typeof Stub.NotHere !== "undefined") {
throw new Error("This shouldn't be here!");
}
if (typeof Stub.Here === "undefined") {
throw new Error("This should be here!");
}
});

View File

@ -0,0 +1 @@
export const Here = "exists";