Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganitzsh committed Nov 9, 2023
1 parent b7b43f6 commit 0f1b4e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions tsconfig.common.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
"strict": true,
"strictNullChecks": true,
"target": "es2020",
"types": ["node", "jest"],
"verbatimModuleSyntax": true
"types": ["node", "jest"]
},
"ts-node": {
"esm": true
Expand Down
7 changes: 4 additions & 3 deletions tsconfig.production.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.spec.ts"],
"compilerOptions": {
"rootDir": "./src",
"outDir": "./lib",
"noEmit": false,
"types": ["node"]
"outDir": "./lib",
"rootDir": "./src",
"types": ["node"],
"verbatimModuleSyntax": true
},
"extends": "./tsconfig.common.json"
}

0 comments on commit 0f1b4e2

Please sign in to comment.