From ee8594d67815915abeb8a96e3735ec8ee938f3d5 Mon Sep 17 00:00:00 2001 From: StevanFreeborn Date: Sat, 4 Feb 2023 00:27:39 -0600 Subject: [PATCH] fix: added new tsconfig files to vcs --- tsconfig.cjs.json | 8 ++++++++ tsconfig.esm.json | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 tsconfig.cjs.json create mode 100644 tsconfig.esm.json diff --git a/tsconfig.cjs.json b/tsconfig.cjs.json new file mode 100644 index 0000000..56142a4 --- /dev/null +++ b/tsconfig.cjs.json @@ -0,0 +1,8 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "module": "commonjs", + "target": "es2015", + "outDir": "./dist/cjs" + } +} diff --git a/tsconfig.esm.json b/tsconfig.esm.json new file mode 100644 index 0000000..55b5cad --- /dev/null +++ b/tsconfig.esm.json @@ -0,0 +1,8 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "module": "esnext", + "target": "es2015", + "outDir": "./dist/esm" + } +}