Exclude docs folder from TypeScript compilation
This commit is contained in:
parent
87c53e4f7c
commit
27a173578a
2 changed files with 10 additions and 1 deletions
8
.eslintignore
Normal file
8
.eslintignore
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
node_modules
|
||||
.next
|
||||
dist
|
||||
build
|
||||
coverage
|
||||
docs/
|
||||
*.example.ts
|
||||
*.example.tsx
|
||||
|
|
@ -37,6 +37,7 @@
|
|||
"**/*.mts"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
"node_modules",
|
||||
"docs/**/*"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue