0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 02:10:44 -05:00

Renamed tsconfig.test.json to tsconfig.profiler.json, as it's not actually used for testing.

This commit is contained in:
Refringe 2023-10-29 22:01:48 -04:00
parent b31a48066b
commit 1d914783ae
No known key found for this signature in database
GPG Key ID: 64E03E5F892C6F9E
2 changed files with 2 additions and 3 deletions

View File

@ -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 () =>

View File

@ -4,8 +4,7 @@
"outDir": "obj",
"declaration": true,
"sourceMap": true,
"noImplicitAny": false,
"types": ["vitest/globals"],
"noImplicitAny": false
},
"include": [
"./types/**/*",