From a48cb4716c43cd6449c93bd36bf5b1cd174bae4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojte=CC=8Cch=20Vidra?= Date: Thu, 25 Aug 2022 08:02:01 +0200 Subject: [PATCH] fix: tsconfig --- package.json | 2 +- tsconfig.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 094aefe..085776f 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "light-mode", "lib" ], - "version": "1.0.1", + "version": "1.0.2", "author": { "name": "Vojtěch Vidra", "email": "vojtechvidra@gmail.com", diff --git a/tsconfig.json b/tsconfig.json index 88876aa..a3e9064 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "target": "es2016", - "module": "AMD", + "module": "CommonJS", "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, @@ -9,6 +9,6 @@ "declaration": true, "outDir": "dist", "rootDir": "src", - "jsx": "react-jsx", - }, + "jsx": "react-jsx" + } }