refactor: update test setup, introduce system environment for commands, and streamline frontend build configuration.

This commit is contained in:
2026-01-07 17:17:04 +00:00
parent 57e9bbb4ea
commit 38a8d33242
22 changed files with 518 additions and 432 deletions
+14 -5
View File
@@ -7,7 +7,9 @@
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2023",
"lib": ["ES2024"],
"lib": [
"ES2024"
],
"verbatimModuleSyntax": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
@@ -16,8 +18,15 @@
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": true,
"noUnusedLocals": true,
"noUnusedParameters": true
"noUnusedParameters": true,
"rootDir": "src"
},
"include": ["src", "test", "*.ts"],
"references": [{ "path": "../common" }]
}
"include": [
"src"
],
"references": [
{
"path": "../common"
}
]
}