build: configure TypeScript to cover all files

Signed-off-by: Alfi Maulana <alfi.maulana.f@gmail.com>
This commit is contained in:
Alfi Maulana 2025-06-10 13:20:38 +07:00
parent bef022bb70
commit 14703a1253
No known key found for this signature in database
GPG Key ID: 2242A64C2A8DF5A4
2 changed files with 1 additions and 5 deletions

View File

@ -17,12 +17,10 @@ pre-commit:
- name: check types
run: pnpm tsc --noEmit
glob:
- src/*.ts
- "*.ts"
- .npmrc
- pnpm-lock.yaml
- tsconfig.json
exclude:
- src/*.test.ts
- name: build action
run: pnpm rollup -c

View File

@ -1,7 +1,5 @@
{
"extends": "@tsconfig/node20",
"include": ["src"],
"exclude": ["**/*.test.ts"],
"compilerOptions": {
"module": "node16"
}