Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 16 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
node_modules/
/out/
node_modules

# Mac files
**/.DS_Store
.DS_Store

.yarn/**
**.gz
*.log

dist/
out/

.nyc_output/

.DS_Store
# generated directories
types
dist
out

*.log
# stryker temp files
.stryker-tmp

coverage/
types/
# generated reports
reports
coverage
.nyc_output
6 changes: 2 additions & 4 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,7 @@ const config: Config = {
// ],

// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
// testPathIgnorePatterns: [
// "/node_modules/"
// ],
testPathIgnorePatterns: ["/node_modules/"],

// The regexp pattern or array of patterns that Jest uses to detect test files
// testRegex: [],
Expand All @@ -177,7 +175,7 @@ const config: Config = {
$schema: "https://swc.rs/schema.json",
sourceMaps: "inline",
module: {
type: "commonjs",
type: "es6",
strictMode: true,
noInterop: false,
resolveFully: false,
Expand Down
Loading