From de4184a2d754399db6b82303a1e277f532dc9add Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Sun, 3 Jan 2021 21:25:31 +0100 Subject: [PATCH] ts hello world --- src/index.html | 1 + src/index.ts | 2 +- tsconfig.json | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/index.html b/src/index.html index 4f88479..1edf0c6 100644 --- a/src/index.html +++ b/src/index.html @@ -5,5 +5,6 @@

Zgłaszańsko

+ diff --git a/src/index.ts b/src/index.ts index 68a551b..702f428 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1 +1 @@ -import { submit } from "poznan-sm-submit"; +console.log("hello"); diff --git a/tsconfig.json b/tsconfig.json index ce33b64..8fa566d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,11 @@ { "compilerOptions": { - "module": "esnext", + "module": "commonjs", "moduleResolution": "node", "noImplicitAny": true, "noImplicitThis": true, "strictNullChecks": true, - "target": "ES2020", + "target": "ES6", "declaration": true, "esModuleInterop": true, "lib": ["es6", "esnext"],