From 05b6f626d8299a87a4eea8609e90c4967840c5fd Mon Sep 17 00:00:00 2001 From: garrettmills Date: Fri, 13 Jun 2025 17:22:31 -0400 Subject: [PATCH] Screw around w/ esm some more --- package.json | 2 +- tsconfig.json | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d4b0452..e169699 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mark-mark-parsers-renderers", - "version": "0.1.2", + "version": "0.1.3", "description": "A TypeScript MarkMark parser/renderer collection", "homepage": "https://garrettmills.dev/markmark", "main": "lib/index.js", diff --git a/tsconfig.json b/tsconfig.json index 1286eb8..1989580 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,14 @@ { "compilerOptions": { - "target": "es6", + "target": "es2016", "module": "commonjs", "declaration": true, "outDir": "./lib", "strict": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, "skipLibCheck": true, "lib": ["ESNext"] },