Skip to content
Snippets Groups Projects
Verified Commit e161d355 authored by Jan Loewe's avatar Jan Loewe :speech_balloon:
Browse files

fix(ts): fix build and tests tsconfig.json

parent f1b63192
Branches
Tags
No related merge requests found
......@@ -5,6 +5,14 @@ const config: JestConfigWithTsJest = {
testEnvironment: "node",
reporters: ["default", "jest-junit"],
coverageProvider: "v8",
transform: {
"^.+\\.m?[tj]sx?$": [
"ts-jest",
{
tsconfig: "tests/tsconfig.json",
},
],
},
};
export default config;
......@@ -4,4 +4,7 @@
"declaration": true,
"module": "commonjs"
},
"files": [
"./index.d.ts"
]
}
......@@ -6,9 +6,6 @@
"sourceMap": true,
"outDir": "./lib",
},
"files": [
"./tests/index.d.ts"
],
"include": [
"src"
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment