Exclude docs folder from TypeScript compilation

This commit is contained in:
Anderson 2026-02-07 04:31:10 +00:00 committed by GitHub
parent 87c53e4f7c
commit 27a173578a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 1 deletions

8
.eslintignore Normal file
View file

@ -0,0 +1,8 @@
node_modules
.next
dist
build
coverage
docs/
*.example.ts
*.example.tsx

View file

@ -37,6 +37,7 @@
"**/*.mts"
],
"exclude": [
"node_modules"
"node_modules",
"docs/**/*"
]
}