chore: update ts config and jest config

This commit is contained in:
Joe Previte 2021-01-25 16:34:32 -07:00
parent 3044224729
commit 14c5aecd45
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24
2 changed files with 4 additions and 4 deletions

View File

@ -115,9 +115,9 @@
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/lib/vscode",
"<rootDir>/out"
"node_modules",
"lib",
"out"
],
"collectCoverage": true,
"collectCoverageFrom": [

View File

@ -19,5 +19,5 @@
"downlevelIteration": true
},
"include": ["./src/**/*.ts"],
"exclude": ["test", "lib", "ci", "doc"]
"exclude": ["/test", "/lib", "/ci", "/doc"]
}