diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..68a551b --- /dev/null +++ b/src/index.ts @@ -0,0 +1 @@ +import { submit } from "poznan-sm-submit"; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..ce33b64 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "module": "esnext", + "moduleResolution": "node", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "target": "ES2020", + "declaration": true, + "esModuleInterop": true, + "lib": ["es6", "esnext"], + "outDir": "lib", + "checkJs": true, + "allowJs": true, + "declarationDir": "@types", + "sourceMap": true + }, + "include": ["src/**/*"] +}