mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 17:38:11 +03:00
* add inGameID to WACCA charts * add WACCA import support from MYT * add client support for api/myt-wacca * add bot support for api/myt-wacca * remove artistJP and titleJP from songs-wacca Turns out these aren't actually in the game data or anything, and we won't be able to get their values for omni songs or future songs added in plus. * add some missing omni WACCA songs * add test * fix tabs in test.conf.json5 * revamp grpc call handling a bit and add more error handling * feat: drag the protofiles in rather than alter build --------- Co-authored-by: zkldi <20380519+zkldi@users.noreply.github.com>
21 lines
562 B
JSON
21 lines
562 B
JSON
// This TSConfig file is used when pnpm build is ran. It omits out
|
|
// unecessary files, such as anything involved in testing.
|
|
// This is a separate TSConfig file because VSCode (by default) uses
|
|
// the exclude list to find out what it should care about for typechecking
|
|
// while writing code.
|
|
// Since I still want my tests to take advantage of static typing, this is
|
|
// a necessary hack.
|
|
{
|
|
"extends": "./tsconfig.json",
|
|
"exclude": [
|
|
"node_modules",
|
|
"proto",
|
|
"src/test-utils",
|
|
"src/**/*.test.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../common"
|
|
}
|
|
]
|
|
} |