first commit

This commit is contained in:
2021-03-12 13:02:02 +01:00
commit c4eec5720a
8 changed files with 93 additions and 0 deletions

5
src/gestion-listener.ts Normal file
View File

@ -0,0 +1,5 @@
import {} from "";
export class GestionListener {
GestionListener(): any {}
}

1
src/index.ts Normal file
View File

@ -0,0 +1 @@
export * from "./gestion-listener";

10
src/tsconfig.json Normal file
View File

@ -0,0 +1,10 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"moduleResolution": "node"
},
"exclude": [
"build/",
"node_modules"
]
}