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