Skip to content

Commit

Permalink
fix test run failing
Browse files Browse the repository at this point in the history
  • Loading branch information
Banidja committed Aug 30, 2024
1 parent 5cb9bfd commit ef9d4a8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ node_modules/
# Build output
dist/

#Test output
test/*.js
test/*.js.map
test/*.d.ts

# IDE/editor configurations
.vscode/
.idea/
Expand Down
8 changes: 4 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"target": "es5",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"rootDir": "./",
"strict": true,
"esModuleInterop": true,
"resolveJsonModule": true,
Expand All @@ -12,11 +12,11 @@
"sourceMap": true
},
"include": [
"src/**/*"
"src/**/*",
"test/**/*"
],
"exclude": [
"node_modules",
"dist",
"test"
"dist"
]
}
6 changes: 5 additions & 1 deletion tsconfig.test.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./dist/test"
},
"include": [
"test/**/*"
],
"exclude": [
"node_modules"
"node_modules",
"dist"
]
}

0 comments on commit ef9d4a8

Please sign in to comment.