Skip to content

Commit

Permalink
move tsconfig to the project root so jest can be happy again
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgrue committed Apr 10, 2024
1 parent 93f7f67 commit 2dbad68
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 54 deletions.
4 changes: 2 additions & 2 deletions build-infrastructure/esbuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const minify = false;
/// server translation
const result = await esbuild
.build({
tsconfig: "build-infrastructure/tsconfig.json",
tsconfig: "tsconfig.json",

// logLevel: 'verbose',

Expand Down Expand Up @@ -69,7 +69,7 @@ const minify = false;
/// client translation
const result = await esbuild
.build({
tsconfig: "build-infrastructure/tsconfig.json",
tsconfig: "tsconfig.json",

// logLevel: 'verbose',

Expand Down
1 change: 0 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
tsConfig: "tsconfig.jest.json",
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"debug-in-chrome": "electron . --inspect-brk",
"test": "jest --verbose --runInBand --detectOpenHandles --forceExit --bail=false",
"test-watch": "jest --watch",
"test-ts": "ts-jest --verbose --runInBand --detectOpenHandles --forceExit --bail=false"
"configure-ts-jest": "ts-jest"
},
"author": "",
"license": "MIT",
Expand Down
50 changes: 0 additions & 50 deletions tsconfig.jest.json

This file was deleted.

File renamed without changes.

0 comments on commit 2dbad68

Please sign in to comment.