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", "name": "mark-mark-parsers-renderers",
"version": "0.1.2", "version": "0.1.3",
"description": "A TypeScript MarkMark parser/renderer collection", "description": "A TypeScript MarkMark parser/renderer collection",
"homepage": "https://garrettmills.dev/markmark", "homepage": "https://garrettmills.dev/markmark",
"main": "lib/index.js", "main": "lib/index.js",

View File

@ -1,12 +1,14 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es6", "target": "es2016",
"module": "commonjs", "module": "commonjs",
"declaration": true, "declaration": true,
"outDir": "./lib", "outDir": "./lib",
"strict": true, "strict": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true, "skipLibCheck": true,
"lib": ["ESNext"] "lib": ["ESNext"]
}, },