mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-26 17:07:58 +03:00
20 lines
570 B
JSON
20 lines
570 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",
|
|
"src/test-utils",
|
|
"src/**/*.test.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../common"
|
|
}
|
|
]
|
|
} |