Skip to content

Commit

Permalink
chore: initialize repo
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianSedzik committed Jul 9, 2023
0 parents commit 6ec32a4
Show file tree
Hide file tree
Showing 7 changed files with 1,307 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
.idea
13 changes: 13 additions & 0 deletions dts-bundle-generator.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const config = {
compilationOptions: {
preferredConfigPath: './tsconfig.json'
},
entries: [
{
filePath: './lib/index.ts',
outFile: './dist/index.d.ts'
}
]
};

module.exports = config;
14 changes: 14 additions & 0 deletions lib/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { test } from '@playwright/test';
interface A {
a: string;
}

export function asd(): A {
test('asd', () => {
console.log('asd');
})

return {
a: 'test'
}
}
Loading

0 comments on commit 6ec32a4

Please sign in to comment.