feat: update package.json and tsconfig files for improved build process and structure

This commit is contained in:
tone
2025-10-15 12:37:15 +08:00
parent 4721157142
commit 9a34212aba
3 changed files with 31 additions and 17 deletions

11
tsconfig.build.json Normal file
View File

@@ -0,0 +1,11 @@
{
"extends": "./tsconfig.json",
"include": [
"src/**/*"
],
"exclude": [
"__tests__",
"node_modules",
"dist"
]
}