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/**/*",