Resolves an issue that caused the profiler from not being able to parse import paths.

This commit is contained in:
Refringe 2023-10-30 17:31:58 -04:00
parent 1821607866
commit aa512e93ef
No known key found for this signature in database
GPG Key ID: 64E03E5F892C6F9E

View File

@ -4,7 +4,13 @@
"outDir": "obj", "outDir": "obj",
"declaration": true, "declaration": true,
"sourceMap": true, "sourceMap": true,
"noImplicitAny": false "noImplicitAny": false,
"baseUrl": ".",
"paths": {
"@spt-aki/*": [
"src/*"
]
}
}, },
"include": [ "include": [
"./types/**/*", "./types/**/*",