Screw around w/ esm some more

This commit is contained in:
Garrett Mills 2025-06-13 17:22:31 -04:00
parent 9da2fd0054
commit 05b6f626d8
2 changed files with 4 additions and 2 deletions

View File

@ -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",

View File

@ -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"]
},