Archived
1
0

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", "testEnvironment": "node",
"testPathIgnorePatterns": [ "testPathIgnorePatterns": [
"/node_modules/", "node_modules",
"<rootDir>/lib/vscode", "lib",
"<rootDir>/out" "out"
], ],
"collectCoverage": true, "collectCoverage": true,
"collectCoverageFrom": [ "collectCoverageFrom": [

View File

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