Skip to content

Commit

Permalink
Added coverage in .eslintignore
Browse files Browse the repository at this point in the history
  • Loading branch information
jalik committed May 4, 2023
1 parent be701e8 commit ea56afa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Expand Up @@ -7,3 +7,6 @@ node_modules/
# Compiled files
/dist/
/esm/

# Coverage
/coverage/
2 changes: 1 addition & 1 deletion tsconfig.cjs.json
Expand Up @@ -4,5 +4,5 @@
"module": "CommonJS",
"outDir": "./dist",
"target": "ES5"
},
}
}
12 changes: 6 additions & 6 deletions tsconfig.json
Expand Up @@ -9,15 +9,15 @@
"outDir": "./esm",
"sourceMap": true,
"strict": true,
"target": "ES2022",
"target": "ES2022"
},
"include": [
"src",
],
"exclude": [
"node_modules",
"node_modules"
],
"include": [
"src"
],
"typeRoots": [
"node_modules/@types",
"node_modules/@types"
]
}

0 comments on commit ea56afa

Please sign in to comment.