Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
michaldudak committed Feb 15, 2024
1 parent 8ca78b7 commit 299402d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ describe('typescript-to-proptypes', () => {

const buildProject = createTypeScriptProjectBuilder({
test: {
rootPath: path.join(__dirname, '../..'),
tsConfigPath: 'tsconfig.json',
rootPath: path.join(__dirname, '..'),
tsConfigPath: 'tsconfig.test.json',
},
});

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"noEmit": true,
"moduleResolution": "node",
"types": ["node", "mocha"],
"strict": true,
"esModuleInterop": true,
"isolatedModules": true
},
"include": ["./src/*.ts", "./test/*.ts"],
"references": [{ "path": "../../docs-utils/tsconfig.build.json" }]
}

0 comments on commit 299402d

Please sign in to comment.