dev #2

Merged
Astrian merged 12 commits from dev into main 2025-02-25 22:26:27 +00:00
2 changed files with 5 additions and 3 deletions
Showing only changes of commit 593ef1b2e8 - Show all commits

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