feat: update package.json and tsconfig.app.json to correct type definitions and enable declaration file generation
All checks were successful
Publish to npm / publish (push) Successful in 24s

This commit is contained in:
Astrian Zheng 2025-02-25 10:18:57 +11:00
parent dc62c0e13a
commit 593ef1b2e8
Signed by: Astrian
SSH Key Fingerprint: SHA256:rVnhx3DAKjujCwWE13aDl7uV6+9U1MvydLkNRXJrBiA
2 changed files with 5 additions and 3 deletions

View File

@ -22,14 +22,14 @@
"vue-tsc": "^2.2.0"
},
"exports": {
"types": "./dist_types/src/index.js",
"types": "./dist_types/src/index.d.ts",
"import": "./dist/datenel-vue3.js",
"require": "./dist/datenel-vue3.umd.cjs",
"default": "./dist/datenel-vue3.umd.cjs"
},
"main": "dist/datenel-vue3.umd.cjs",
"module": "dist/datenel-vue3.js",
"types": "dist_types/src/index.js",
"types": "dist_types/src/index.d.ts",
"files": [
"dist",
"dist_types"

View File

@ -13,7 +13,9 @@
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "DOM", "dom.iterable", "scripthost"],
"skipLibCheck": true
"skipLibCheck": true,
"declaration": true,
"emitDeclarationOnly": true,
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "playground/**/*.ts", "playground/**/*.d.ts", "playground/**/*.tsx", "playground/**/*.vue"]
}