Skip to content

Commit

Permalink
Simplify configs
Browse files Browse the repository at this point in the history
  • Loading branch information
InversionSpaces committed Oct 18, 2023
1 parent eaae4d9 commit ce4f780
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 9 deletions.
4 changes: 0 additions & 4 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
export default {
testEnvironment: "node",
testTimeout: 1000 * 60 * 10, // 10 minutes in milliseconds
testPathIgnorePatterns: ["^dist"],
moduleNameMapper: {
"^(\\.{1,2}/.*)\\.js$": "$1",
},
extensionsToTreatAsEsm: [".ts"],
transform: {
"^.+\\.tsx?$": [
Expand Down
2 changes: 1 addition & 1 deletion test/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import { fluence } from "./utils.js";
import { fluence } from "./utils";

describe("integration tests", () => {
it("should run integration tests", async () => {
Expand Down
4 changes: 0 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
"extends": "@tsconfig/node18-strictest-esm/tsconfig.json",
"compilerOptions": {
"declaration": true,
"importHelpers": true,
"outDir": "dist",
"moduleResolution": "nodenext",
"module": "nodenext",
"resolveJsonModule": true,
"importsNotUsedAsValues": "remove",
"verbatimModuleSyntax": true,
"lib": ["es2023"]
Expand Down

0 comments on commit ce4f780

Please sign in to comment.