From 1d914783aefc1ae62150cd4c32355d07c532fded Mon Sep 17 00:00:00 2001 From: Refringe Date: Sun, 29 Oct 2023 22:01:48 -0400 Subject: [PATCH] Renamed `tsconfig.test.json` to `tsconfig.profiler.json`, as it's not actually used for testing. --- project/gulpfile.mjs | 2 +- project/{tsconfig.test.json => tsconfig.profiler.json} | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) rename project/{tsconfig.test.json => tsconfig.profiler.json} (76%) diff --git a/project/gulpfile.mjs b/project/gulpfile.mjs index 4266bb65..db637dab 100644 --- a/project/gulpfile.mjs +++ b/project/gulpfile.mjs @@ -34,7 +34,7 @@ const compile = async () => await exec("swc src -d obj", { stdio }); /** * Transpiles the src files into javascript with tsc for the profiler run */ -const compileProfiler = async () => await exec("tsc -p tsconfig.test.json", { stdio }); +const compileProfiler = async () => await exec("tsc -p tsconfig.profiler.json", { stdio }); // Packaging const fetchPackageImage = async () => diff --git a/project/tsconfig.test.json b/project/tsconfig.profiler.json similarity index 76% rename from project/tsconfig.test.json rename to project/tsconfig.profiler.json index bc28a536..c7d718a9 100644 --- a/project/tsconfig.test.json +++ b/project/tsconfig.profiler.json @@ -4,8 +4,7 @@ "outDir": "obj", "declaration": true, "sourceMap": true, - "noImplicitAny": false, - "types": ["vitest/globals"], + "noImplicitAny": false }, "include": [ "./types/**/*",