chore: Exclude "tools" directory from TypeScript compilation

This commit updates the `tsconfig.json` file to exclude the "tools" directory from TypeScript compilation. Previously, only the "test" and "gui" directories were excluded, but now the "tools" directory is also excluded. This change ensures that the TypeScript compiler does not process any files in the "tools" directory during the build process.

```
This commit is contained in:
bobo.yang 2024-06-25 14:14:35 +08:00
parent b106ad555e
commit b9e6311db1

View File

@ -21,6 +21,6 @@
}
},
"exclude": [
"test","gui"
"test","gui","tools"
]
}