From f3d23afd50f58ee3198784556c3c0f773389abf3 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Sun, 3 Jan 2021 20:39:00 +0100 Subject: [PATCH] Add tsconfig --- src/index.ts | 1 + tsconfig.json | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 src/index.ts create mode 100644 tsconfig.json 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/**/*"] +}