ac-fhir-models
Advanced tools
Comparing version 7.11.0-rc.0 to 7.15.0-rc.0
@@ -5,3 +5,8 @@ { | ||
"resolveJsonModule": true, | ||
"strict": false | ||
"strict": false, | ||
"declaration": true, // Generate .d.ts files | ||
"noEmit": false, | ||
"emitDeclarationOnly": true, // Only emit .d.ts files, no .js files | ||
"module": "commonjs", // Match the module system you're using | ||
"target": "es2018" // Adjust based on your target environment | ||
}, | ||
@@ -8,0 +13,0 @@ "exclude": ["node_modules", "**/node_modules/*", "dist", "index.js"], |
{ | ||
"name": "ac-fhir-models", | ||
"version": "7.11.0-rc.0", | ||
"version": "7.15.0-rc.0", | ||
"author": "Henrik Joreteg <henrik@anesthesiacharting.com>", | ||
@@ -38,9 +38,10 @@ "dependencies": { | ||
"ci": "npm run static && npm test", | ||
"clean:dts": "rm *.d.ts && find src -name '*.d.ts' -type f -delete", | ||
"format": "prettier --write .", | ||
"lint": "eslint ./src .", | ||
"prepublishOnly": "npm run ci && npm run build", | ||
"prepublishOnly": "npm run ci && npm run build && npm run tsc", | ||
"static": "fixpack && npm run format && npm run lint && npm run tsc", | ||
"test": "tape -r esm -r ./test-helpers.js src/**/*.spec.js | tap-spec", | ||
"tsc": "tsc -p jsconfig.json" | ||
"tsc": "npm run clean:dts && tsc -p jsconfig.json" | ||
} | ||
} |
215610
7386